mirror of
https://github.com/danbulant/ester_os
synced 2026-05-22 05:38:32 +00:00
Render navbar
This commit is contained in:
parent
93c6fb1916
commit
d8041a78fa
1 changed files with 16 additions and 0 deletions
16
client/src/ui/main.js
Normal file
16
client/src/ui/main.js
Normal 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;
|
||||
Loading…
Reference in a new issue