import * as React from 'react'; import AspectRatio from '@mui/joy/AspectRatio'; import Stack from '@mui/joy/Stack'; import Button from '@mui/joy/Button'; import Card from '@mui/joy/Card'; import Skeleton from '@mui/joy/Skeleton'; import Typography from '@mui/joy/Typography'; export default function LoadingSkeleton() { const [loading, setLoading] = React.useState(true); return ( {loading ? 'Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries.' : 'An aerial view of a road in the middle of a forest. This image was uploaded by Dian Yu on Unsplash.'} ); }