Skip to content

Instantly share code, notes, and snippets.

@tgmarinho
Created April 2, 2018 18:27
Show Gist options
  • Save tgmarinho/04fb5304366c8dd9dc389b3c59eff60c to your computer and use it in GitHub Desktop.
Save tgmarinho/04fb5304366c8dd9dc389b3c59eff60c to your computer and use it in GitHub Desktop.
import React from 'react';
import Button from './button';
const LikeButton = () => (
<Button handleClick={() => alert(‘You Like It’)}>Curtir</Button>
);
export default LikeButton;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment