import vectorThrobbing from '../../vectors/throbber.svg' import './styles/FooterLoading.css' interface PropsForFooterLoading { reason: string | undefined } export default function FooterLoading({ reason }: PropsForFooterLoading) { return (
{(reason ?? 'Loading').toUpperCase()}
) }