Skip to content

Instantly share code, notes, and snippets.

@gregoryanderson
Created February 7, 2020 20:12
Show Gist options
  • Select an option

  • Save gregoryanderson/182a1b6fac76a10e50c6537c414cbeae to your computer and use it in GitHub Desktop.

Select an option

Save gregoryanderson/182a1b6fac76a10e50c6537c414cbeae to your computer and use it in GitHub Desktop.
Ideas with props
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