Skip to content

Commit

Permalink
Merge pull request #148 from DNO-inc/feature#104
Browse files Browse the repository at this point in the history
Fix ping-pong
  • Loading branch information
yaroslavUsenko authored Dec 17, 2024
2 parents 0ccd035 + 02faf8c commit d25fea1
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/components/ComingSoon/ComingSoon.tsx
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
import { useTranslation } from "react-i18next";
import { useTranslation } from 'react-i18next'

import Grid from "@mui/material/Grid";
import Typography from "@mui/material/Typography";
import Grid from '@mui/material/Grid'
import Typography from '@mui/material/Typography'

const ComingSoon = () => {
const { t } = useTranslation();
const { t } = useTranslation()

return (
<Grid
container
sx={{ height: "70vh", justifyContent: "center", alignItems: "center" }}
sx={{ height: '70vh', justifyContent: 'center', alignItems: 'center' }}
>
<Typography
sx={{
textTransform: "capitalize",
fontSize: "40px",
fontWeight: "bold",
textTransform: 'capitalize',
fontSize: '40px',
fontWeight: 'bold',
}}
>
{t("common.comingSoon")}
{t('common.comingSoon')}
</Typography>
</Grid>
);
};
)
}

export { ComingSoon };
export { ComingSoon }

0 comments on commit d25fea1

Please sign in to comment.