Index page done

This commit is contained in:
2022-04-15 23:33:57 -03:00
parent 38f97e1acc
commit d5f6c5aee0
15 changed files with 250 additions and 9 deletions

27
src/App.jsx Normal file
View File

@@ -0,0 +1,27 @@
import {
BrowserRouter as Router,
Routes,
Route,
Link
} from "react-router-dom";
import Header from './components/Header/Header'
import Auth from './Pages/Auth'
import Index from './Pages/Index/Index'
function App() {
return (
<>
<Header />
<Router>
<Routes>
<Route path="/auth" element={<Auth/>} />
<Route path="/" element={<Index/>} />
</Routes>
</Router>
</>
);
}
export default App;