Skip to content

Instantly share code, notes, and snippets.

@samilkahraman
Created February 25, 2020 13:06
Show Gist options
  • Save samilkahraman/d64330ab3bc1879d22c69d552b51be22 to your computer and use it in GitHub Desktop.
Save samilkahraman/d64330ab3bc1879d22c69d552b51be22 to your computer and use it in GitHub Desktop.
ornekAuth
export default function AuthExample() {
return (
<Router>
<div>
<AuthButton />
<ul>
<li>
<Link to="/public">Public Page</Link>
</li>
<li>
<Link to="/protected">Protected Page</Link>
</li>
</ul>
<Switch>
<Route path="/public">
<PublicPage />
</Route>
<Route path="/login">
<LoginPage />
</Route>
<PrivateRoute path="/protected">
<ProtectedPage />
</PrivateRoute>
</Switch>
</div>
</Router>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment