'use client' import * as React from 'react' import { useTranslation } from 'react-i18next' import './style.css' type ILoadingProps = { type?: 'area' | 'app' } const Loading = ( { type = 'area' }: ILoadingProps = { type: 'area' }, ) => { const { t } = useTranslation() return (