import React from 'react'; import { useTranslation } from 'react-i18next'; import Box from '../Box'; import Skeleton from '../Skeleton'; import { Container, Text } from './styled'; const PdfSkeleton: React.SFC = () => { const { t } = useTranslation('toast'); return ( {t('processing')} ); }; export default PdfSkeleton;