photoncss
Version:
Go from 0 to app in seconds
12 lines (11 loc) • 396 B
TypeScript
import PropTypes, { InferProps } from "prop-types";
export declare function Menu({ children, className, ...props }: InferProps<typeof Menu.propTypes> & InferProps<any>): JSX.Element;
export declare namespace Menu {
var propTypes: {
children: PropTypes.Requireable<any>;
className: PropTypes.Requireable<string>;
};
var defaultProps: {
children: null;
};
}