-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplate.html
31 lines (31 loc) · 982 Bytes
/
template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<div>
<header className="header">
<h1>todos</h1>
<input className="new-todo" type="text" placeholder="What needs to be done?" value=""/>
</header>
<section className="main">
<input className="toggle-all" type="checkbox"/>
<ul className="todo-list">
<li className="">
<div className="view">
<input className="toggle" type="checkbox"/>
<label>Use Redux</label>
<button className="destroy"></button>
</div>
</li>
</ul>
<footer className="footer">
<span className="todo-count">
<strong>1</strong>
<span> </span>
<span>item</span>
<span> left</span>
</span>
<ul className="filters">
<li><a className="selected">All</a></li>
<li><a className="">Active</a></li>
<li><a className="">Completed</a></li>
</ul>
</footer>
</section>
</div>