Skip to content

Instantly share code, notes, and snippets.

@saurabhnemade
Created May 4, 2020 06:09
Show Gist options
  • Save saurabhnemade/15067c211f0df38e465cdaa9fadfe2aa to your computer and use it in GitHub Desktop.
Save saurabhnemade/15067c211f0df38e465cdaa9fadfe2aa to your computer and use it in GitHub Desktop.
import React from 'react'
const buttonStyle = {
padding: '10px 20px'
};
const Button = (props) => {
return (
<button
className="btn btn-default"
style={buttonStyle}
onClick={props.handleClick}>{props.label}</button>
)
}
Button.defaultProps = {
onClick: () => {},
label: ''
};
export default Button;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment