mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
25 lines
770 B
TypeScript
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;
|