import { Routes, Route } from "react-router-dom"; import { ProvideSettings } from "./context/settings"; // import Snowfall from "react-snowfall"; import { SnowOverlay } from 'react-snow-overlay'; import { ToastContainer } from "react-toastify"; import { SocketContext, socket } from "./context/socket"; import StatsPage from "./pages/StatsPage"; import OrderGroupsPage from "./pages/OrderGroupsPage"; import SuggestionsPage from "./pages/SuggestionsPage"; import App from "./App"; export const STATS_URL = '/stats'; export const OBJEDNANI_URL = '/objednani'; export const NAVRHY_URL = '/navrhy'; export default function AppRoutes() { return ( } /> } /> } /> <> {/* */} } /> ); }