Skip to content

Instantly share code, notes, and snippets.

@blizzerand
Created November 30, 2018 10:58
Show Gist options
  • Save blizzerand/9ddf8e1a05924f27895ae24a725dd74c to your computer and use it in GitHub Desktop.
Save blizzerand/9ddf8e1a05924f27895ae24a725dd74c to your computer and use it in GitHub Desktop.
/*Button.jsx */
const Button = (props) => {
console.log(props.style);
return(
<button
style= {props.style}
onClick= {props.action}>
{props.title}
</button>)
}
export default Button;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment