import React from 'react'; import { Page, Masthead, MastheadToggle, MastheadMain, MastheadBrand, MastheadContent, PageSidebar, PageSidebarBody, PageSection, PageSectionVariants, PageToggleButton, Toolbar, ToolbarContent, ToolbarItem } from '@breakaway/preact-core'; import BarsIcon from '@patternfly/react-icons/dist/esm/icons/bars-icon'; export const PageMainSectionPadding: React.FunctionComponent = () => { const [isSidebarOpen, setIsSidebarOpen] = React.useState(true); const onSidebarToggle = () => { setIsSidebarOpen(!isSidebarOpen); }; const headerToolbar = ( header-tools ); const header = ( Logo {headerToolbar} ); const sidebar = ( Navigation ); return ( Section with default padding Section with no padding Section with padding on medium Section with no padding on medium ); };