import styles from '@patternfly/react-styles/css/components/Compass/compass'; import { css } from '@patternfly/react-styles'; export interface CompassNavMainProps extends React.HTMLProps { /** Content of the nav main section (typically tabs). */ children: React.ReactNode; /** Additional classes added to the nav main section. */ className?: string; } export const CompassNavMain: React.FunctionComponent = ({ children, className, ...props }: CompassNavMainProps) => (
{children}
); CompassNavMain.displayName = 'CompassNavMain';