import * as React from 'react'; import styles from '@patternfly/react-styles/css/components/Panel/panel'; import { css } from '@patternfly/react-styles'; export interface PanelMainBodyProps extends React.HTMLProps { /** Content rendered inside the panel main body div */ children?: React.ReactNode; /** Class to add to outer div */ className?: string; } export const PanelMainBody: React.FunctionComponent = ({ className, children, ...props }: PanelMainBodyProps) => (
{children}
); PanelMainBody.displayName = 'PanelMainBody';