import { lazy, Suspense } from 'react'; import { Route } from 'react-router-dom'; import './App.css'; import { QueryClient, QueryClientProvider } from 'react-query'; import SocketProvider from './app/context/socketContext'; import withSocket from './features/viewers/ViewWrapper'; import { ReactQueryDevtools } from 'react-query/devtools'; const Editor = lazy(() => import('./features/editors/Editor')); const PresenterView = lazy(() => import('./features/viewers/presenter/PresenterView') ); const PresenterSimple = lazy(() => import('./features/viewers/presenter/PresenterSimple') ); const StageManager = lazy(() => import('./features/viewers/backstage/StageManager') ); const Public = lazy(() => import('./features/viewers/foh/Public') ); const Lower = lazy(() => import('./features/viewers/lower/Lower')); const queryClient = new QueryClient(); // Seemed to cause issues // broadcastQueryClient({ // queryClient, // broadcastChannel: 'ontime', // }); const SSpeaker = withSocket(PresenterView); const SSpeakerSimple = withSocket(PresenterSimple); const SStageManager = withSocket(StageManager); const SPublic = withSocket(Public); const SLowerThird = withSocket(Lower); function App() { return (
Loading...
}> {/* */}
); } export default App;