MCPcopy Create free account
hub / github.com/flatlogic/react-material-admin / Loader

Function Loader

src/components/Loader/index.js:4–10  ·  view source on GitHub ↗
({ size })

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected