diff --git a/client/src/ui/main.js b/client/src/ui/main.js new file mode 100644 index 0000000..f73ba94 --- /dev/null +++ b/client/src/ui/main.js @@ -0,0 +1,16 @@ +import React from 'react'; +import Navbar from './system/navbar'; +import setBackground from './system/background'; +import '../App.css'; + +function App() { + setBackground(); + + return ( + <> + + + ); +} + +export default App;