Skip to content

Instantly share code, notes, and snippets.

@matheusml
Last active October 5, 2016 00:23
Show Gist options
  • Save matheusml/209dde559eeea08ba06e282ff8da4f64 to your computer and use it in GitHub Desktop.
Save matheusml/209dde559eeea08ba06e282ff8da4f64 to your computer and use it in GitHub Desktop.
import React from 'react';
const styles = {
backgroundColor: 'blue',
border: 'none',
color: white,
padding: '5px 10px'
};
const Main = () => (
<button
onClick={() => alert('Clicked')}
style={styles}
>Click me</button>
);
export default Main;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment