Skip to content

Instantly share code, notes, and snippets.

@NiGhTTraX
Created February 5, 2017 15:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NiGhTTraX/7371ed6af21771d1f68a5af102ff5e2e to your computer and use it in GitHub Desktop.
Save NiGhTTraX/7371ed6af21771d1f68a5af102ff5e2e to your computer and use it in GitHub Desktop.
import Button from './button.jsx';
function Todo(props) {
return <div>
<span>{props.name}</span>
<Button onSubmit={props.onDelete}>Delete</Button>
</div>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment