Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ask1811 committed Mar 18, 2023
1 parent c0a4ed7 commit 97888b9
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
25 changes: 25 additions & 0 deletions frontend/src/App.js
@@ -0,0 +1,25 @@
import React from 'react';
import './App.css';
import { BrowserRouter,Route,Routes } from 'react-router-dom';
import Home from './pages/Home/home';
import Signup from './pages/Signup/signup';
import Navbar from './components/Navbar/navbar';
import Login from './pages/Login/login';
function App() {
return (
<div className="App">
<BrowserRouter>
<Navbar/>
<Routes>
<Route path='/' element={<Home/>} />
<Route path='/login' element={<Login/>} />
<Route path='/signup' element={<Signup/>} />


</Routes>
</BrowserRouter>
</div>
);
}

export default App;
Empty file.
11 changes: 11 additions & 0 deletions frontend/src/Components/Navbar/navbar.js
@@ -0,0 +1,11 @@
import React from 'react'

const navbar = () => {
return (
<div>

</div>
)
}

export default navbar

0 comments on commit 97888b9

Please sign in to comment.