diff --git a/frontend/src/components/LazyImportComponent.tsx b/frontend/src/components/LazyImportComponent.tsx index 3c154d2..17f8d0f 100644 --- a/frontend/src/components/LazyImportComponent.tsx +++ b/frontend/src/components/LazyImportComponent.tsx @@ -1,5 +1,6 @@ import { FC, LazyExoticComponent, ReactNode, Suspense } from 'react'; import { useTranslation } from 'react-i18next'; +import { Spinner } from '@fluentui/react-components'; interface LazyImportComponentProps { lazyChildren: LazyExoticComponent>; @@ -11,7 +12,10 @@ export const LazyImportComponent: FC = (props) => { const { t } = useTranslation(); return ( - {t('Loading...')}}> + + + }> {props.children}