Initial commit

This commit is contained in:
2023-05-12 07:31:04 +03:00
commit 786a6a9abb
70 changed files with 32822 additions and 0 deletions

20
frontend/src/App.js Normal file
View File

@ -0,0 +1,20 @@
import './App.css';
import HomePage from './pages/HomePage'
import { BrowserRouter as Router} from "react-router-dom";
import AuthPage from './pages/AuthPage'
import { Switch, Route } from 'react-router-dom';
function App() {
return (
<Router>
<div className="App">
<Switch>
<Route path="/auth" component={AuthPage} />
</Switch>
<HomePage />
</div>
</Router>
);
}
export default App;