Skip to content

Instantly share code, notes, and snippets.

@sajithdilshan
Created January 27, 2018 19:31
Show Gist options
  • Save sajithdilshan/b90806c180112414fa4bc7a3a9b512f9 to your computer and use it in GitHub Desktop.
Save sajithdilshan/b90806c180112414fa4bc7a3a9b512f9 to your computer and use it in GitHub Desktop.
import React from "react";
export default class ButtonComponent extends React.Component {
render() {
return (
<div>
<button className="color-button">Red</button>
<button className="color-button">Blue</button>
</div>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment