import { Suspense } from "react" import Layout from "app/core/layouts/Layout" import getActualSitesState from "app/stateSites/queries/getActualSitesState" import getHistoryOfSitesState from "app/stateSites/queries/getHistoryOfSitesState" import { BlitzPage } from "@blitzjs/next" import State from "app/core/pages/State" import { gSP } from "app/blitz-server" import { ErrorBoundary } from "@blitzjs/next" import { ServerSidePropsContext, } from "app/core/contextProviders/serverSidePropsProvider" import { StatePageProps } from "app/core/pages/State/State" import { StaticPageProps } from "app/core/commonTypes" function ErrorFallback({ error, resetErrorBoundary }) { return (

Something went wrong:

{error.message}
) } const StatePage: BlitzPage = (props) => { return ( { // reset the state of your app so the error doesn't happen again }} > ) } export const getStaticProps = gSP(async ({ params, ctx }): StaticPageProps => { const actualState = await getActualSitesState(); const historyOfState = await getHistoryOfSitesState(); return { props: { actualState, historyOfState }, } }) export default StatePage