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