import React from 'react'; import { Card, CardBody, Gallery, GalleryItem, Nav, NavItem, NavList, Page, PageSection, PageSectionVariants, SkipToContent, TextContent, Text } from '@patternfly/react-core'; import { DashboardBreadcrumb } from '@patternfly/react-core/src/demos/DashboardWrapper'; import { DashboardHeader } from '@patternfly/react-core/src/demos/DashboardHeader'; export const NavTertiary: React.FunctionComponent = () => { const [activeItem, setActiveItem] = React.useState(0); const onNavSelect = ( _event: React.FormEvent, selectedItem: { groupId: number | string; itemId: number | string; to: string; } ) => setActiveItem(selectedItem.itemId); const PageNav = ( ); const pageId = 'main-content-page-layout-tertiary-nav'; const PageSkipToContent = Skip to content; return ( } breadcrumb={DashboardBreadcrumb} tertiaryNav={PageNav} isManagedSidebar isTertiaryNavWidthLimited skipToContent={PageSkipToContent} mainContainerId={pageId} > Main title Body text should be Overpass Regular at 16px. It should have leading of 24px because
of its relative line height of 1.5.
{Array.from({ length: 10 }).map((_value, index) => ( This is a card ))}
); };