@akrc/next-progress
v0.0.2
Published
Yet another progress bar for next.js
Downloads
8
Readme
Next-progress
Yet another progressbar for next.js
Installation
pnpm install @akrc/next-progress
Usage
/* pages/app.[jt]sx */
import { useProgress } from '@akrc/next-progress';
export default function MyApp({ Component, pageProps }: AppProps) {
useProgress();
return <Component {...pageProps} />;
}