import React from 'react'; import Box from '@material-ui/core/Box'; import Typography from '@material-ui/core/Typography'; import Avatar from '@material-ui/core/Avatar'; import Grid from '@material-ui/core/Grid'; import { makeStyles } from '@material-ui/core/styles'; import Skeleton from '@material-ui/lab/Skeleton'; const useStyles = makeStyles(() => ({ image: { width: '100%', }, })); function SkeletonChildrenDemo(props: { loading?: boolean }) { const { loading = false } = props; const classes = useStyles(); return (
)}