export function LoadingState({ label = 'Loading…' }: { label?: string }): JSX.Element { return (
{label}
); }