adding the non-webpack entry points to docs

This commit is contained in:
Ken
2019-02-20 12:25:38 -08:00
parent 9bce24d819
commit dce954c894
29 changed files with 770 additions and 59 deletions

27
docs/step1-01/index.html Normal file
View 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>