Skip to content

Instantly share code, notes, and snippets.

@marensas
Created July 10, 2018 21:29
Show Gist options
  • Save marensas/e76cbc484a57df50f87944221c507776 to your computer and use it in GitHub Desktop.
Save marensas/e76cbc484a57df50f87944221c507776 to your computer and use it in GitHub Desktop.
import React from 'react';
const Button = (props) => {
return <button onClick={props.handler()}>{props.name}</button>;
}
export default Button;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment