Skip to content

Instantly share code, notes, and snippets.

@ahuggins
Last active January 25, 2019 02:13
Show Gist options
  • Select an option

  • Save ahuggins/3bb2b0333ecf160e985989ad3d0cccfe to your computer and use it in GitHub Desktop.

Select an option

Save ahuggins/3bb2b0333ecf160e985989ad3d0cccfe to your computer and use it in GitHub Desktop.
A simple Foo Component
import React from 'react';
import { Bar } from './Bar';
export function Foo() {
return <div>
<div className="fooClass">
<Bar />
</div>
</div>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment