import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/Table/table-scrollable'; export interface OuterScrollContainerProps extends React.HTMLProps { /** Content rendered inside the outer scroll container */ children?: React.ReactNode; /** Additional classes added to the container */ className?: string; } export const OuterScrollContainer: React.FunctionComponent = ({ children, className, ...props }: OuterScrollContainerProps) => (
{children}
); OuterScrollContainer.displayName = 'OuterScrollContainer';