import { connect } from 'react-redux'; import { useTranslation } from 'react-i18next'; import Paper from '@mui/material/Paper'; import Typography from '@mui/material/Typography'; import './Unsupported.css'; const Unsupported = () => { const { t } = useTranslation(); return (
{ t('UnsupportedContainer.title') } { t('UnsupportedContainer.subtitle1') }
{ t('UnsupportedContainer.subtitle2') }
); }; const mapStateToProps = state => ({ }); export default connect(mapStateToProps)(Unsupported);