// @flow 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"; import type { LocationWithState } from "types"; type Props = {| location: LocationWithState, |}; export default function Loading({ location }: Props) { const { t } = useTranslation(); return ( ); }