Skip to content

Instantly share code, notes, and snippets.

@matheusml
Last active October 5, 2016 00:23
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 matheusml/95c2ee1ce8cdcfb2cb5e55341935ab92 to your computer and use it in GitHub Desktop.
Save matheusml/95c2ee1ce8cdcfb2cb5e55341935ab92 to your computer and use it in GitHub Desktop.
import React from 'react';
import styles from './styles.css';
const Main = () => (
<button
onClick={() => alert('Clicked')}
className={styles.button}
>Click me</button>
);
export default Main;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment