mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
12 lines
302 B
TypeScript
12 lines
302 B
TypeScript
import React from 'react';
|
|
|
|
export const TodoFooter = (props: any) => {
|
|
const itemCount = Object.keys(props.todos).filter(id => !props.todos[id].completed).length;
|
|
return (
|
|
<footer>
|
|
<span>4 items left</span>
|
|
<button className="submit">Clear Completed</button>
|
|
</footer>
|
|
);
|
|
};
|