Skip to content

Instantly share code, notes, and snippets.

@codewithbernard
Last active February 22, 2018 09:03
Show Gist options
  • Save codewithbernard/e332db8d48f72ee8d460f8fb8c2b2a55 to your computer and use it in GitHub Desktop.
Save codewithbernard/e332db8d48f72ee8d460f8fb8c2b2a55 to your computer and use it in GitHub Desktop.
import React from 'react';
const MealPlanItem = (props) => {
return <li>{props.meal}</li>
}
export default MealPlanItem;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment