Skip to content

Instantly share code, notes, and snippets.

@tgmarinho
Created April 2, 2018 18:28
Show Gist options
  • Save tgmarinho/86797dd279eeb1f32b2ef04d780398b3 to your computer and use it in GitHub Desktop.
Save tgmarinho/86797dd279eeb1f32b2ef04d780398b3 to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import LikeButton from './likeButton';
import DeslikeButton from './deslikeButton';
class App extends Component {
 
 render () {
return (
<div>
<LikeButton />
<DeslikeButton />
</div>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment