// @flow import * as React from "react"; 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) { return ( ); }