Skip to content

Commit

Permalink
Update App.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
StanislavKapytsia authored Dec 11, 2024
1 parent ddea68f commit 8f599b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import React, { useEffect, useMemo, useRef, useState } from 'react';
import { addTodo, delTodo, get, updTodo } from './api/todos';
import { TodoInterface } from './types/Todo';
import { Filter } from './types/filter';
import { TodoList } from './components/todoList/todoList';
import { FilteredTodoList } from './components/footer/filteredTodoList';
import { TodoList } from './components/todoList/TodoList';
import { FilteredTodoList } from './components/footer/FilteredTodoList';
import classNames from 'classnames';

export const App: React.FC = () => {
Expand Down

0 comments on commit 8f599b3

Please sign in to comment.