mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
adding the non-webpack entry points to docs
This commit is contained in:
27
docs/step1-01/index.html
Normal file
27
docs/step1-01/index.html
Normal file
@@ -0,0 +1,27 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<body>
|
||||
<h1>todos</h1>
|
||||
<div><input placeholder="add todo" /><button>Add</button></div>
|
||||
<div>
|
||||
<button>all</button>
|
||||
<button>active</button>
|
||||
<button>completed</button>
|
||||
</div>
|
||||
<ul>
|
||||
<li>
|
||||
<label><input type="checkbox" /> Todo 1</label>
|
||||
</li>
|
||||
<li>
|
||||
<label><input type="checkbox" /> Todo 2</label>
|
||||
</li>
|
||||
<li>
|
||||
<label><input type="checkbox" /> Todo 3</label>
|
||||
</li>
|
||||
<li>
|
||||
<label><input type="checkbox" /> Todo 4</label>
|
||||
</li>
|
||||
</ul>
|
||||
<div><span>4 items left</span> <button>Clear Completed</button></div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user