Render navbar

This commit is contained in:
danbulant 2020-02-07 20:08:27 +01:00
parent 93c6fb1916
commit d8041a78fa

16
client/src/ui/main.js Normal file
View file

@ -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 (
<>
<Navbar />
</>
);
}
export default App;