Skip to content

Instantly share code, notes, and snippets.

@viniciusdacal
Last active March 25, 2017 22:44
Show Gist options
  • Select an option

  • Save viniciusdacal/14500e8af29ba3e2a9709d81c80fe656 to your computer and use it in GitHub Desktop.

Select an option

Save viniciusdacal/14500e8af29ba3e2a9709d81c80fe656 to your computer and use it in GitHub Desktop.
import React from 'react';
import ReactDom from 'react-dom';
const Button = ({ children, type = 'button' }) => (
<button type={type} className='btn'>
{children}
</button>
);
ReactDOM.render(
<Button>Example</Button>,
document.getElementById('root')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment