mirror of
https://github.com/danbulant/ester_os
synced 2026-06-15 04:11:07 +00:00
16 lines
268 B
JavaScript
16 lines
268 B
JavaScript
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;
|