mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
fleshed out up to step 6
This commit is contained in:
11
step06/src/components/TodoFooter.tsx
Normal file
11
step06/src/components/TodoFooter.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import React from "react";
|
||||
|
||||
export const TodoFooter = (props: any) => {
|
||||
const items = props.todos.filter(todo => !todo.completed)
|
||||
return (
|
||||
<footer>
|
||||
<span> {items.length} items left </span>
|
||||
<button className="button">Clear Completed</button>
|
||||
</footer>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user