diff options
Diffstat (limited to '')
| -rw-r--r-- | frontend/src/App.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/frontend/src/App.js b/frontend/src/App.js new file mode 100644 index 0000000..e853b02 --- /dev/null +++ b/frontend/src/App.js | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | import React from 'react'; | ||
| 2 | |||
| 3 | import Sidebar from "./components/sidebar.js" | ||
| 4 | import "./App.css"; | ||
| 5 | import "./fonts/D-DIN.otf" | ||
| 6 | |||
| 7 | |||
| 8 | |||
| 9 | export default function App() { | ||
| 10 | |||
| 11 | return ( | ||
| 12 | <> | ||
| 13 | <Sidebar/> | ||
| 14 | </> | ||
| 15 | ) | ||
| 16 | } \ No newline at end of file | ||