Skip to content

Instantly share code, notes, and snippets.

@dcolucci
Last active October 27, 2016 02:51
Show Gist options
  • Save dcolucci/b64a5ccea5892b1c5cd5300b0cd94cf6 to your computer and use it in GitHub Desktop.
Save dcolucci/b64a5ccea5892b1c5cd5300b0cd94cf6 to your computer and use it in GitHub Desktop.
const myComponent = () => {
return (
<div>Hello, world!</div>
);
};
const Foo = ({ bar, baz = [], quux }) => {
return (
<div className="component-foo">
<a href="/">Home</a>
{ /* a whole bunch of other stuff */ }
</div>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment