import { useLocalize } from '../../context/localize' import { Loading } from '../_shared/Loading' import styles from './InlineLoader.module.scss' type Props = { class?: string } export const InlineLoader = (_props: Props) => { const { t } = useLocalize() return (
{t('Loading')}
) }