diff --git a/002_source/cms/src/components/loading/index.tsx b/002_source/cms/src/components/loading/index.tsx new file mode 100644 index 0000000..219a67e --- /dev/null +++ b/002_source/cms/src/components/loading/index.tsx @@ -0,0 +1,43 @@ +'use client'; + +import React from 'react'; +import { Box } from '@mui/system'; +import { useTranslation } from 'next-i18next'; +import { PulseLoader } from 'react-spinners'; + +function Loading(): React.JSX.Element { + const { t } = useTranslation(); + + return ( +