Station page
This commit is contained in:
parent
65f5acb598
commit
1470b1b95a
5 changed files with 608 additions and 0 deletions
|
@ -3,6 +3,7 @@ import { BrowserRouter as Router, Routes, Route } from 'react-router-dom';
|
|||
import Home from './components/Home';
|
||||
import CreateStation from './components/CreateStation';
|
||||
import JoinStation from './components/JoinStation';
|
||||
import StationPage from './components/StationPage';
|
||||
import './App.css';
|
||||
|
||||
function App() {
|
||||
|
@ -13,6 +14,7 @@ function App() {
|
|||
<Route path="/" element={<Home />} />
|
||||
<Route path="/create-station" element={<CreateStation />} />
|
||||
<Route path="/join-station" element={<JoinStation />} />
|
||||
<Route path="/station" element={<StationPage />} />
|
||||
</Routes>
|
||||
</Router>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue