Skip to content

Instantly share code, notes, and snippets.

@mariocsantos
Last active January 13, 2021 14:02
Show Gist options
  • Save mariocsantos/108e8f067bd71fd724cb7599cbbdf628 to your computer and use it in GitHub Desktop.
Save mariocsantos/108e8f067bd71fd724cb7599cbbdf628 to your computer and use it in GitHub Desktop.
Favorite Food
import React from 'react';
function FavoriteFoodList() {
return (
<ul>
<li>Hamburguer 🍔</li>
<li>Pizza 🍕</li>
<li>Barbecue 🥩</li>
</ul>
);
}
export { FavoriteFoodList };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment