import React from 'react'; import { css } from '@patternfly/react-styles'; import { MenuListProps, MenuList } from '../Menu'; export interface DropdownListProps extends MenuListProps { /** Anything which can be rendered in a dropdown list */ children: React.ReactNode; /** Classes applied to root element of dropdown list */ className?: string; } export const DropdownList: React.FunctionComponent = ({ children, className, ...props }: DropdownListProps) => ( {children} ); DropdownList.displayName = 'DropdownList';