import * as React from 'react'; import Box from '@mui/joy/Box'; import FormControl from '@mui/joy/FormControl'; import FormLabel from '@mui/joy/FormLabel'; import Skeleton from '@mui/joy/Skeleton'; import Stack from '@mui/joy/Stack'; import Switch from '@mui/joy/Switch'; import Typography from '@mui/joy/Typography'; export default function InlineSkeleton() { const [loading, setLoading] = React.useState(true); return ( A heading HISTORY, PURPOSE AND USAGE Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts and visual mockups. setLoading(event.target.checked)} /> Loading ); }