import React from 'react'; import dynamic from 'next/dynamic'; import { useIsNotFound } from '~/stores/page'; import { OldRevisionAlert } from './OldRevisionAlert'; import { PageGrantAlert } from './PageGrantAlert'; import { PageRedirectedAlert } from './PageRedirectedAlert'; import { PageStaleAlert } from './PageStaleAlert'; import { WipPageAlert } from './WipPageAlert'; const FixPageGrantAlert = dynamic(() => import('./FixPageGrantAlert').then(mod => mod.FixPageGrantAlert), { ssr: false }); // dynamic import because TrashPageAlert uses localStorageMiddleware const TrashPageAlert = dynamic(() => import('./TrashPageAlert').then(mod => mod.TrashPageAlert), { ssr: false }); export const PageAlerts = (): JSX.Element => { const { data: isNotFound } = useIsNotFound(); return (