* feat: add theme berry * docs: add development notes * fix: fix blank page * chore: update implementation * fix: fix package.json * chore: update ui copy --------- Co-authored-by: JustSong <songquanpeng@foxmail.com>
9 lines
299 B
JavaScript
9 lines
299 B
JavaScript
// material-ui
|
|
import Skeleton from '@mui/material/Skeleton';
|
|
|
|
// ==============================|| SKELETON IMAGE CARD ||============================== //
|
|
|
|
const ImagePlaceholder = ({ ...others }) => <Skeleton variant="rectangular" {...others} animation="wave" />;
|
|
|
|
export default ImagePlaceholder;
|