mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
25 lines
561 B
TypeScript
25 lines
561 B
TypeScript
import React from 'react';
|
|
import { Todos } from '../TodoApp.types';
|
|
interface TodoFooterProps {
|
|
clear: () => void;
|
|
todos: Todos;
|
|
}
|
|
|
|
export const TodoFooter = (props: TodoFooterProps) => {
|
|
const itemCount = Object.keys(props.todos).filter(id => !props.todos[id].completed).length;
|
|
const _onClick = () => {
|
|
props.clear();
|
|
};
|
|
|
|
return (
|
|
<footer>
|
|
<span>
|
|
{itemCount} item{itemCount > 1 ? 's' : ''} left
|
|
</span>
|
|
<button onClick={_onClick} className="submit">
|
|
Clear Completed
|
|
</button>
|
|
</footer>
|
|
);
|
|
};
|