import { Location } from "history"; import * as React from "react"; import { useTranslation } from "react-i18next"; import CenteredContent from "~/components/CenteredContent"; import PageTitle from "~/components/PageTitle"; import PlaceholderDocument from "~/components/PlaceholderDocument"; import Container from "./Container"; type Props = { location: Location<{ title?: string }>; }; export default function Loading({ location }: Props) { const { t } = useTranslation(); return ( ); }