Skip to content

Instantly share code, notes, and snippets.

@DanyF-github
Created January 8, 2021 10:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DanyF-github/66531085582f8fdad73ad4b63a2691f0 to your computer and use it in GitHub Desktop.
Save DanyF-github/66531085582f8fdad73ad4b63a2691f0 to your computer and use it in GitHub Desktop.
// client/src/pages/index.tsx
...
import ListHomeworkFilesPage from './ListHomeworkFilesPage';
function Pages() {
return (
<Router>
<Navigation />
<div id="roots" className="p-2">
...
<Route path="/homeworks/:uuid/list" exact component={ListHomeworkFilesPage} />
...
</div>
</Router>
);
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment