Skip to content

Instantly share code, notes, and snippets.

@ahuggins
Created January 25, 2019 15:05
Show Gist options
  • Select an option

  • Save ahuggins/23843e0228fec3ae6e11c1fb2960ca4c to your computer and use it in GitHub Desktop.

Select an option

Save ahuggins/23843e0228fec3ae6e11c1fb2960ca4c to your computer and use it in GitHub Desktop.
Another simple component example
import React from 'react';
export function Foo() {
return <div>
<div className="fooClass">
<Bar className="someCustomClass" />
</div>
</div>;
}
export function Bar(props) {
return <div>
<div className="barClass">
<Baz {...props} />
</div>
</div>;
}
export function Baz(props) {
return <div>
<div {...props}>
<h1>Baz is rendered</h1>
</div>
</div>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment