Skip to content

Commit

Permalink
updated blocks component
Browse files Browse the repository at this point in the history
  • Loading branch information
MonikaCat committed Jan 21, 2024
1 parent 6b64298 commit a49ddaa
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
import Typography from '@mui/material/Typography';
import useAppTranslation from '@/hooks/useAppTranslation';
import { FC } from 'react';
import Box from '@/components/box';
import useStyles from '@/screens/validator_details/components/blocks/styles';

const Blocks = ({ className }) => {
const Blocks: FC<ComponentDefault> = ({ className }) => {
const { t } = useAppTranslation('validators');
const { classes, cx } = useStyles();
return (
<Box className={cx(classes.root, className)}>
<Typography variant="h2">{t('lastBlocks')}</Typography>
<div className={classes.content}>
<Typography variant="h4">{t('comingSoon')}</Typography>
<Typography variant="h4">{t('notAvailable')}</Typography>
</div>
</Box>
);
Expand Down

0 comments on commit a49ddaa

Please sign in to comment.