import { func, string } from 'prop-types'; const Button = ({ children, onClick }) => ( ); Button.propTypes = { children: string.isRequired, onClick: func }; export default Button;