Skip to content

Commit

Permalink
comments deleted
Browse files Browse the repository at this point in the history
  • Loading branch information
getchards committed Aug 24, 2024
1 parent e104d79 commit ccbbcbd
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ export const App: React.FC = () => {

<div className="todoapp__content">
<header className="todoapp__header">
{/* this button should have `active` class only if all todos are completed */}
{todos.length > 0 && (
<button
type="button"
Expand Down Expand Up @@ -109,7 +108,6 @@ export const App: React.FC = () => {
{uncompletedTodos} items left
</span>

{/* Active link should have the 'selected' class */}
<nav className="filter" data-cy="Filter">
<NavLink
to="/"
Expand Down Expand Up @@ -142,7 +140,6 @@ export const App: React.FC = () => {
</NavLink>
</nav>

{/* this button should be disabled if there are no completed todos */}
<button
type="button"
className="todoapp__clear-completed"
Expand Down

0 comments on commit ccbbcbd

Please sign in to comment.