Skip to content

Instantly share code, notes, and snippets.

@gregoryanderson
Created February 7, 2020 19:36
Show Gist options
  • Save gregoryanderson/c5936682e864ac5683511da45eeed04c to your computer and use it in GitHub Desktop.
Save gregoryanderson/c5936682e864ac5683511da45eeed04c to your computer and use it in GitHub Desktop.
Container
import React from "react";
import Idea from "./Idea";
const Container = () => {
return (
<section className="Container">
<p>This is the Container</p>
<Idea />
</section>
);
};
export default Container;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment