{{={= =}=}} import { use, type ReactNode } from 'react' import { QueryClientProvider } from '@tanstack/react-query' import { queryClientInitialized } from '../../operations/index' {=# areWebSocketsUsed =} import { WebSocketProvider } from '../../webSocket/WebSocketProvider' {=/ areWebSocketsUsed =} export function WaspApp({ children }: { children: ReactNode }) { const queryClient = use(queryClientInitialized) return ( {=# areWebSocketsUsed =} {children} {=/ areWebSocketsUsed =} {=^ areWebSocketsUsed =} {children} {=/ areWebSocketsUsed =} ) }