Skip to content

Instantly share code, notes, and snippets.

@ericmasiello
Last active March 6, 2020 20:11
Show Gist options
  • Save ericmasiello/f16755946af579d751674c7c08e65c2f to your computer and use it in GitHub Desktop.
Save ericmasiello/f16755946af579d751674c7c08e65c2f to your computer and use it in GitHub Desktop.
import React from 'react';
import './Button.css';
function Button(props) {
const { children } = props;
return (<button className="button">{children}</button>);
}
export default Button;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment