Skip to content

Instantly share code, notes, and snippets.

@azeezat
Created April 6, 2021 15:05
Show Gist options
  • Save azeezat/c1b7fd143b8d77252b83e35fbf5f76d7 to your computer and use it in GitHub Desktop.
Save azeezat/c1b7fd143b8d77252b83e35fbf5f76d7 to your computer and use it in GitHub Desktop.
import ProtectedRoutes from "../routes/ProtectedRoutes";
function MyApp({ Component, pageProps,router }) {
return (
<ProtectedRoutes router={router}>
<Component {...pageProps} />
</ProtectedRoutes>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment