UNPKG

facet-lib

Version:

React component library for the Bare Metal Installer

9 lines (8 loc) 339 B
import React, { CSSProperties } from 'react'; import { PageSection as PfPageSection } from '@patternfly/react-core'; interface PageSectionProps extends React.ComponentProps<typeof PfPageSection> { isMain?: boolean; style?: CSSProperties; } declare const PageSection: React.FC<PageSectionProps>; export default PageSection;