import { lazy, Show, Suspense } from 'solid-js' import { PageLayout } from '../components/_shared/PageLayout' import { Loading } from '../components/_shared/Loading' import { useSession } from '../context/session' const CreateView = lazy(() => import('../components/Views/Create')) export const CreatePage = () => { const { isAuthenticated, isSessionLoaded } = useSession() return ( }> ) } export const Page = CreatePage