Skip to content

Instantly share code, notes, and snippets.

Created February 27, 2016 01:45
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 anonymous/97c079a8cd1a3fbae06f to your computer and use it in GitHub Desktop.
Save anonymous/97c079a8cd1a3fbae06f to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
export default class Follow extends Component {
constructor(props) {
super(props);
}
render() {
return (
<input
className="follow"
onClick={this.props.handleFollowClick()}
style={{backgroundColor: this.props.followed ? 'green' : 'red'}}
value={this.props.followed ? 'Follow' : 'Following'}
/>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment