Skip to content

Instantly share code, notes, and snippets.

@gregoryanderson
Created February 7, 2020 20:05
Show Gist options
  • Save gregoryanderson/5469aa751a43744b50d0fad88752c32e to your computer and use it in GitHub Desktop.
Save gregoryanderson/5469aa751a43744b50d0fad88752c32e to your computer and use it in GitHub Desktop.
Container Ideas
import React from "react";
import Idea from "./Idea";
const Container = props => {
const displayIdeas = () => {
return props.ideas.map(idea => {
return <Idea title={idea.title} description={idea.description} />;
});
};
return <section className="Container">{displayIdeas()}</section>;
};
export default Container;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment