Created
February 7, 2020 20:12
-
-
Save gregoryanderson/182a1b6fac76a10e50c6537c414cbeae to your computer and use it in GitHub Desktop.
Ideas with props
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"; | |
| const Idea = props => { | |
| return ( | |
| <section> | |
| <h1>{props.title}</h1> | |
| <p>{props.description}</p> | |
| </section> | |
| ); | |
| }; | |
| export default Idea; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment