|
@@ -17,7 +17,6 @@ import '@fontsource/roboto/700.css';
|
17
|
17
|
// import reportWebVitals from './reportWebVitals';
|
18
|
18
|
|
19
|
19
|
// JS MODULE STUFF
|
20
|
|
-import Maintainance from './pages/Maintainance';
|
21
|
20
|
|
22
|
21
|
/**
|
23
|
22
|
* NOTE: Dear future programmer of this project, before you judge me on how fucked up this codebase is, I already take everything into consideration and
|
|
@@ -31,8 +30,7 @@ import Maintainance from './pages/Maintainance';
|
31
|
30
|
const root = ReactDOM.createRoot(document.getElementById('root'));
|
32
|
31
|
root.render(
|
33
|
32
|
<Provider store={store}>
|
34
|
|
- <Maintainance/>
|
35
|
|
- {/* <App /> */}
|
|
33
|
+ <App />
|
36
|
34
|
</Provider>
|
37
|
35
|
);
|
38
|
36
|
|