Add mock assets and initialize frontend

This commit is contained in:
Andrew Trieu
2023-07-12 19:02:00 +03:00
parent f3d5ce2524
commit fb8b54a0c1
35 changed files with 18501 additions and 0 deletions

11
client/src/App.js Normal file
View File

@@ -0,0 +1,11 @@
import './App.css';
function App() {
return (
<div className="App">
</div>
);
}
export default App;

7
client/src/index.css Normal file
View File

@@ -0,0 +1,7 @@
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
html, body, #root, .app {
height: 100%;
width: 100%;
font-family: 'Roboto', sans-serif;
}

11
client/src/index.js Normal file
View File

@@ -0,0 +1,11 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);