Skip to content

Commit

Permalink
fix: update StatsPage to use WrappedStats component and remove coming…
Browse files Browse the repository at this point in the history
… soon image
  • Loading branch information
kuba80-02 committed Sep 17, 2024
1 parent 97046fd commit 8ee4e6d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/StatsPage/index.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
import { Grid } from '@mui/material'
import { useStyles } from './styles'
// import WrappedStats from '@containers/WrappedStats/WrappedStats'
import comingSoon from '../../static/png/coming-soon.png'
import WrappedStats from '@containers/WrappedStats/WrappedStats'
// import comingSoon from '../../static/png/coming-soon.png'

export const StatsPage: React.FC = () => {
const { classes } = useStyles()

return (
<Grid container className={classes.container}>
<img src={comingSoon} alt='Coming soon' />
{/* <img src={comingSoon} alt='Coming soon' /> */}

{/* <WrappedStats /> */}
<WrappedStats />
</Grid>
)
}
Expand Down

0 comments on commit 8ee4e6d

Please sign in to comment.