We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69247e7 commit 7cf5dcdCopy full SHA for 7cf5dcd
ep16-new-css/app/components/App.jsx
@@ -62,14 +62,12 @@ export default class App extends React.Component {
62
<button> Submit </button>
63
</form>
64
65
- <p>
+ <footer>
66
All: ({ this.state.todos.length }) |
67
Completed: ({ this.state.todos.filter((todo) => { return todo.done }).length }) |
68
Pending: ({ this.state.todos.filter((todo) => { return !todo.done }).length }) |
69
<a href='#' onClick={this.handleClearCompleted.bind(this)}>Clear Completed</a>
70
- </p>
71
72
+ </footer>
73
74
<DisplayList
75
handleDone={this.handleDone.bind(this)}
0 commit comments