Skip to content

Instantly share code, notes, and snippets.

@viniciusdacal
Created October 10, 2017 18:55
Show Gist options
  • Select an option

  • Save viniciusdacal/4cd1a1d2bccf6b31c60784c678615b98 to your computer and use it in GitHub Desktop.

Select an option

Save viniciusdacal/4cd1a1d2bccf6b31c60784c678615b98 to your computer and use it in GitHub Desktop.
import React from 'react';
const Button = ({ children, ...restProps }) => (
<button {...restProps}>{children}</button>
);
export default Button;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment