+
todos
+
+
+
+ {todos.length !== 0 && (
+
+
+
+
+ {tempTodo && (
+ {}}
+ setTodos={() => {}}
+ setError={setError}
+ handleDelete={() => {}}
+ tempTodo={tempTodo}
+ />
+ )}
+ {!!todos.length && (
+
+ )}
+
+
+
+
+
);
};
diff --git a/src/Footer.tsx b/src/Footer.tsx
new file mode 100644
index 0000000000..47231ec99c
--- /dev/null
+++ b/src/Footer.tsx
@@ -0,0 +1,52 @@
+import { Todo } from './types/Todo';
+import classNames from 'classnames';
+import { Filters } from './types/Filters';
+
+type Props = {
+ todos: Todo[];
+};
+
+export const Footer: React.FC