type ButtonProps = { children: any; className?: string; onClick?: (e?: any) => void; }; export const Button: React.FunctionComponent = (props) => { return ( ); };