We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm combining it with the component. It does fire on desktop-size screens, but not anything smaller, is this a known issue?
const [stateVisible, setStateVisible] = useState(false); function onChange(isVisible:any) { if(isVisible){ setStateVisible(true); } } return( <section id="Steps" className="bg-beige"> <div className="container px-6 lg:py-60 mx-auto ssm:pt-6"> <VisibilitySensor onChange={onChange}> <FadeIn transitionDuration={800} visible={stateVisible}> // bzbz some code </FadeIn> </VisibilitySensor> </div> </section> );
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm combining it with the component. It does fire on desktop-size screens, but not anything smaller, is this a known issue?
The text was updated successfully, but these errors were encountered: