improve logic of final footer to account for '0 items'
This commit is contained in:
Родитель
1eb4078d2c
Коммит
e353f860ad
|
@ -5,7 +5,7 @@ export const TodoFooter = (props: any) => {
|
|||
return (
|
||||
<footer>
|
||||
<span>
|
||||
{itemCount} item{itemCount > 1 ? 's' : ''} left
|
||||
{itemCount} item{itemCount === 1 ? '' : 's'} left
|
||||
</span>
|
||||
<button className="submit">Clear Completed</button>
|
||||
</footer>
|
||||
|
|
Загрузка…
Ссылка в новой задаче