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
Can I just say that this is the coolest animation library I've ever seen.
I'm trying to integrate this with Next.js and having a hard time mapping the react-router App.js file with the _app.js used by Next.js
App.js
_app.js
Any chance you could make a next.js example?
🙏
The text was updated successfully, but these errors were encountered:
basic transitions should work with this:
import React, { Fragment, useEffect } from 'react' import { AppProps } from 'next/app' import { Flipper, Flipped } from 'react-flip-toolkit' const CustomApp = ({ Component, pageProps, router }: AppProps) => { return ( <Fragment> <Flipper flipKey={router.asPath}> <Flipped flipId="square"> <div> <Component {...pageProps} /> </div> </Flipped> </Flipper> </Fragment> ) } export default CustomApp
Sorry, something went wrong.
No branches or pull requests
Can I just say that this is the coolest animation library I've ever seen.
I'm trying to integrate this with Next.js and having a hard time mapping the react-router
App.js
file with the_app.js
used by Next.jsAny chance you could make a next.js example?
🙏
The text was updated successfully, but these errors were encountered: