source: reactapp/src/App.js@ 7cb8c3c

main
Last change on this file since 7cb8c3c was 7cb8c3c, checked in by unknown <mlviktor23@…>, 2 years ago

swapped JsonManaged/BackReference with JsonIdentityInfo in Model, created React app

  • Property mode set to 100644
File size: 354 bytes
Line 
1import { Outlet, Link, useParams } from "react-router-dom";
2
3export default function App() {
4 return (
5 <div>
6 <h1>Main App Page</h1>
7 <nav
8 style={{
9 borderBottom: "solid 1px",
10 paddingBottom: "1rem",
11 }}
12 >
13 <Link to="/professor">Professor</Link>
14 </nav>
15 <Outlet />
16 </div>
17 );
18}
Note: See TracBrowser for help on using the repository browser.