import React from "react"; import Container from "@mui/material/Container"; import Box from "@mui/material/Box"; import Typography from "@mui/material/Typography"; import { useTranslation } from 'react-i18next'; const ThcTestPage = () => { const { t } = useTranslation(); return ( {t('pages.thcTest.title')} {t('pages.thcTest.comingSoon')} ); }; export default ThcTestPage;