Created
February 5, 2023 08:32
-
-
Save standiki/d25ed54ee2502887a8d6a3689cecd2ef to your computer and use it in GitHub Desktop.
Burger Ingredient List
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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