| import { Routes, Route } from 'react-router-dom'; | |
| import Home from './pages/Home'; | |
| import Watch from './pages/Watch'; | |
| export default function App() { | |
| return ( | |
| <Routes> | |
| <Route path="/" element={<Home />} /> | |
| <Route path="/watch/:id" element={<Watch />} /> | |
| </Routes> | |
| ); | |
| } | |