import { useState } from 'react'; import { Page, Masthead, MastheadMain, MastheadToggle, MastheadBrand, MastheadLogo, MastheadContent, PageSidebar, PageSidebarBody, PageSection, PageGroup, PageBreadcrumb, PageToggleButton, Breadcrumb, BreadcrumbItem, Nav, NavList, NavItem, Toolbar, ToolbarContent, ToolbarItem } from '@patternfly/react-core'; export const PageGroupSection: React.FunctionComponent = () => { const [isSidebarOpen, setIsSidebarOpen] = useState(true); const onSidebarToggle = () => { setIsSidebarOpen(!isSidebarOpen); }; const headerToolbar = ( header-tools ); const masthead = ( Logo {headerToolbar} ); const sidebar = ( Navigation ); return ( Section home Section title Section title Section landing

Grouped section

Grouped example section 1

Grouped example section 2

); };