import { Fragment } from 'react'; import { Banner, Card, CardBody, Flex, Gallery, GalleryItem, PageSection, Content } from '@patternfly/react-core'; import { DashboardWrapper } from '@patternfly/react-core/dist/js/demos/DashboardWrapper'; import { css } from '@patternfly/react-styles'; import display from '@patternfly/react-styles/css/utilities/Display/display'; export const BannerBasicSticky: React.FunctionComponent = () => { const banner = (
Localhost
This message is sticky to the top of the page.
Drop some text on mobile, truncate if needed.
Ned Username
); return (

Main title

Body text should be Red Hat Text at 1rem (16px). It should have leading of 1.5rem (24px) because
of its relative line height of 1.5.

{Array.from({ length: 30 }).map((_value, index) => ( This is a card ))}
); };