import { Gallery, Flex, PageSection, Content, Card, CardBody, Skeleton } from '@patternfly/react-core'; import { DashboardWrapper } from '@patternfly/react-core/src/demos/DashboardWrapper'; export const SkeletonCard: React.FunctionComponent = () => { const card = (index: number) => ( ); return ( Main title This is a full page demo. {Array.from({ length: 7 }).map((_value, index) => card(index))} ); };