diff --git a/ui/src/components/PageSection.tsx b/ui/src/components/PageSection.tsx index cc1f2f973..c1e160645 100644 --- a/ui/src/components/PageSection.tsx +++ b/ui/src/components/PageSection.tsx @@ -1,5 +1,4 @@ import React, { ReactElement, ReactNode } from 'react'; -import { Panel, PanelMain, PanelMainBody, PanelHeader, Divider } from '@patternfly/react-core'; type Props = { header: ReactNode; @@ -9,12 +8,15 @@ type Props = { export default function PageSection({ header, className = '', children }: Props): ReactElement { return ( - - {header} - - - {children} - - +
+
+
+

+ {header} +

+
+
{children}
+
+
); }