import PropTypes from 'prop-types' import Typography from '@mui/material/Typography' import Box from '@mui/material/Box' import Grid from '@mui/material/Grid2' import BarStats from './bar-stats' export default function TraductionsStats({value, total}) { const translated = total - value const percent = (translated / total) * 100 return ( {translated} ) } TraductionsStats.propTypes = { value: PropTypes.number.isRequired, total: PropTypes.number.isRequired }