reorg step0

This commit is contained in:
Micah Godbolt
2019-02-15 14:51:31 -08:00
parent d43986bfe7
commit 5e64d11d22
15 changed files with 72 additions and 43 deletions

View File

@@ -1,20 +1,15 @@
import React from 'react';
export class TodoHeader extends React.Component {
render() {
return (
<div>
<h1>todos</h1>
<input className="textfield" />
<button className="button add">
Add
</button>
<input className="textfield" placeholder="add todo" />
<button className="button add">Add</button>
<div className="filter">
<button className="active">
all
</button>
<button >active</button>
<button className="active">all</button>
<button>active</button>
<button>completed</button>
</div>
</div>