Skip to content

Instantly share code, notes, and snippets.

@ulexxander
Created November 4, 2021 09:22
Show Gist options
  • Save ulexxander/65d1ef4f49ffd44c8bc5658111ffd9aa to your computer and use it in GitHub Desktop.
Save ulexxander/65d1ef4f49ffd44c8bc5658111ffd9aa to your computer and use it in GitHub Desktop.
/*
basename prop has '/' by deafult
it works as a prefix for all of routes, pushes, links and so on
*/
export const App: React.FC = () => {
return (
<Router basename="/admin">
{/* ... */}
</Router>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment