@appbuckets/react-ui
Version:
Just Another React UI Framework
11 lines (10 loc) • 319 B
TypeScript
import * as React from 'react';
import { Creatable } from '../generic';
import { MenuProps } from './Menu.types';
import MenuItem from './MenuItem';
export declare type MenuChildren = {
Item: typeof MenuItem;
};
declare const Menu: Creatable<React.FunctionComponent<MenuProps>> &
MenuChildren;
export default Menu;