@ampa/nextjs-router
v1.0.3
Published
## Plugin for [@ampa/core](https://github.com/Uncleseneca/ampa-core) to use with nextjs-router
Downloads
11
Readme
@ampa/nextjs-router
Plugin for @ampa/core to use with nextjs-router
Install
yarn add @ampa/nextjs-router
Example
import { PageTransition } from '@ampa/core' // the core component
import { createUseNextRouter } from '@ampa/nextjs-router' // one of the hooks for different routers
...
<PageTransition
useRouter={createUseNextRouter()}
timeout={{ enter: 900, exit: 900 }}
routeAnimations={routeAnimations}
>
<Component {...pageProps} />
</PageTransition>