Skip to content

Instantly share code, notes, and snippets.

@Justinnn07
Created October 23, 2021 08:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Justinnn07/adf6dabdf3a4d114a8872df637026a78 to your computer and use it in GitHub Desktop.
Save Justinnn07/adf6dabdf3a4d114a8872df637026a78 to your computer and use it in GitHub Desktop.
import React from "react";
import "./App.css";
const App = () => {
return (
<div>
<div class="container">
<h2>TODO LIST</h2>
<h3>Add Item</h3>
<p>
<input id="new-task" type="text" />
<button>Add</button>
</p>
<h3>Todo</h3>
<ul>
<li>
<label>See the Doctor</label>
<input type="text" />
<button class="edit">Edit</button>
<button class="delete">Delete</button>
</li>
</ul>
</div>
</div>
);
};
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment