import React from 'react'; import Style from './News.module.css'; import {useTranslation} from "react-i18next"; const News = () => { const {t} = useTranslation(); return (

{t('newsTitle')}

{t('newsSubtitle')}

{/*
*/} {/* */} {/*

{t('newsContentTitle')}

*/} {/*

{t('newsContent')}

*/} {/* */} {/* */} {/*
*/}
); }; export default News;