import React from 'react'; import { Card, CardBody, Gallery, GalleryItem, Nav, NavExpandable, NavItem, NavList, Page, PageSection, PageSectionVariants, PageSidebar, PageSidebarBody, 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 NavExpandableDemo: React.FunctionComponent = () => { const [activeGroup, setActiveGroup] = React.useState('grp-1'); const [activeItem, setActiveItem] = React.useState('grp-1_itm-1'); const onNavSelect = ( _event: React.FormEvent, selectedItem: { groupId: number | string; itemId: number | string; to: string; } ) => { setActiveItem(selectedItem.itemId); setActiveGroup(selectedItem.groupId); }; const PageNav = ( ); const Sidebar = ( {PageNav} ); const pageId = 'main-content-page-layout-expandable-nav'; const PageSkipToContent = Skip to content; return ( } sidebar={Sidebar} isManagedSidebar skipToContent={PageSkipToContent} breadcrumb={DashboardBreadcrumb} 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 ))}
); };