({ size })
| 2 | import CircularProgress from '@mui/material/CircularProgress'; |
| 3 | |
| 4 | function Loader({ size }) { |
| 5 | return ( |
| 6 | <div> |
| 7 | <CircularProgress size={size} /> |
| 8 | </div> |
| 9 | ); |
| 10 | } |
| 11 | |
| 12 | Loader.propTypes = { |
| 13 | size: PropTypes.number.isRequired, |
nothing calls this directly
no outgoing calls
no test coverage detected