Created
February 7, 2020 19:36
-
-
Save gregoryanderson/c5936682e864ac5683511da45eeed04c to your computer and use it in GitHub Desktop.
Container
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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