import React from 'react' import ReactDOM from 'react-dom/client' import { createBrowserRouter, RouterProvider, } from 'react-router-dom'; import Home from './routes/Home.tsx'; import GolfEntry from './routes/golf/GolfEntry.tsx'; import GolfPlay from './routes/golf/GolfPlay.tsx'; import GolfWatch from './routes/golf/GolfWatch.tsx'; const router = createBrowserRouter([ { path: "/", element: (), }, { path: "/golf/entry/", element: (), }, { path: "/golf/:gameId/play/:playerId/", element: (), }, { path: "/golf/:gameId/watch/", element: (), }, ]); ReactDOM.createRoot(document.getElementById('root')!).render( , )