Files
pawol.nu/components/akey/statistik.js
T

18 lines
522 B
JavaScript
Raw Normal View History

2023-07-22 13:38:54 +04:00
import PropTypes from 'prop-types'
import Grid from '@mui/material/Unstable_Grid2'
import KatAkey from './kat-akey'
export default function Statistik({statistik}) {
return (
<Grid container spacing={2} sx={{marginBottom: 3}}>
<KatAkey tit='Paroles' kantite={statistik.countParole} href='/paroles' as='/paroles' />
<KatAkey tit='Artistes' kantite={statistik.countArtiste} href='/awtis?paj&paj=1' as='/awtis/paj/1' />
</Grid>
)
}
Statistik.propTypes = {
statistik: PropTypes.object.isRequired
}