Cockatrice/webclient/src/containers/Unsupported/Unsupported.tsx
2026-04-15 15:46:17 -05:00

25 lines
770 B
TypeScript

import { useTranslation } from 'react-i18next';
import Paper from '@mui/material/Paper';
import Typography from '@mui/material/Typography';
import Layout from '../Layout/Layout';
import './Unsupported.css';
const Unsupported = () => {
const { t } = useTranslation();
return (
<Layout className='Unsupported'>
<Paper className='Unsupported-paper'>
<div className='Unsupported-paper__header'>
<Typography variant="h1">{ t('UnsupportedContainer.title') }</Typography>
<Typography variant="subtitle1">{ t('UnsupportedContainer.subtitle1') }</Typography>
</div>
<Typography variant="subtitle2">{ t('UnsupportedContainer.subtitle2') }</Typography>
</Paper>
</Layout>
);
};
export default Unsupported;