import { BrowserRouter, Route, Routes } from "react-router-dom" import loadable from "@loadable/component" import { Header } from "./pages/template/Header.tsx" const HomePage = loadable(() => import("./pages/HomePage.tsx")) const LoginPage = loadable(() => import("./pages/LoginPage.tsx")) const RegisterPage = loadable(() => import("./pages/RegisterPage.tsx")) const NotFoundPage = loadable(() => import("./pages/404.tsx")) const CreateTeamPage = loadable(() => import("./pages/CreateTeamPage.tsx")) const TeamPanelPage = loadable(() => import("./pages/TeamPanel.tsx")) const NewTacticPage = loadable(() => import("./pages/NewTacticPage.tsx")) const Editor = loadable(() => import("./pages/Editor.tsx")) export default function App() { return (