mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-03-27 20:00:52 +08:00
17 lines
329 B
TypeScript
17 lines
329 B
TypeScript
import React from 'react';
|
|
|
|
export const TodoFooter = (props: any) => {
|
|
const itemCount = 3;
|
|
|
|
return (
|
|
<footer>
|
|
<span>
|
|
{itemCount} item{itemCount > 1 ? 's' : ''} left
|
|
</span>
|
|
<button onClick={() => props.clear()} className="button">
|
|
Clear Completed
|
|
</button>
|
|
</footer>
|
|
);
|
|
};
|