// @flow import * as React from "react"; import { useTranslation } from "react-i18next"; import CenteredContent from "components/CenteredContent"; import LoadingPlaceholder from "components/LoadingPlaceholder"; import PageTitle from "components/PageTitle"; import Container from "./Container"; import type { LocationWithState } from "types"; type Props = {| location: LocationWithState, |}; export default function Loading({ location }: Props) { const { t } = useTranslation(); return ( ); }