From d8041a78fa17e2af89307c238f5ca93f35044761 Mon Sep 17 00:00:00 2001 From: danbulant Date: Fri, 7 Feb 2020 20:08:27 +0100 Subject: [PATCH] Render navbar --- client/src/ui/main.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 client/src/ui/main.js 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;