Skip to content

Instantly share code, notes, and snippets.

@HyunSeob
Created July 15, 2018 04:54
Show Gist options
  • Save HyunSeob/aa733c48058cd559b8135b65870024c9 to your computer and use it in GitHub Desktop.
Save HyunSeob/aa733c48058cd559b8135b65870024c9 to your computer and use it in GitHub Desktop.
import React from 'react';
import { render } from 'react-dom';
const Button = ({ color, children, ...props }) => (
<button style={{ color }} {...props}>{children}</button>
)
render((
<div>
<Button color="red">Button1</Button>
<Button color="red" onClick={() => console.log('Yeahhs')}>Button2</Button> {/* Okay! */}
</div>
), document.getElementById('root'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment