Answers for "what is intrinsic proptype for button"

0

what is intrinsic proptype for button

class MyButton extends React.Component<MyButtonProps & React.HTMLProps<HTMLButtonElement>, {}> {
    render() {
        return <button {...this.props}/>;
    }
}
Posted by: Guest on May-05-2021

Browse Popular Code Answers by Language