Skip to content

Instantly share code, notes, and snippets.

@standiki
Created February 5, 2023 08:32
Show Gist options
  • Save standiki/d25ed54ee2502887a8d6a3689cecd2ef to your computer and use it in GitHub Desktop.
Save standiki/d25ed54ee2502887a8d6a3689cecd2ef to your computer and use it in GitHub Desktop.
Burger Ingredient List
function App() {
return (
<div>
<h2>Burger Ingredients 🍔</h2>
<ul>
<li>Salad</li>
<li>Chicken</li>
<li>Meat</li>
<li>Cheese</li>
<li>Bacon</li>
<li>Beef patty</li>
<li>Tomatoes</li>
<li>Lettuce</li>
</ul>
</div>
)
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment