Skip to content

Instantly share code, notes, and snippets.

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