diff --git a/src/App.tsx b/src/App.tsx
index 78d22d5..67913c8 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -1,6 +1,6 @@
import { QueryClientProvider, QueryClient } from 'react-query';
import { ReactQueryDevtools } from 'react-query/devtools';
-import { Todos, Header, BottomNavigation } from './components';
+import { Todos, Header, Footer } from './components';
const queryClient = new QueryClient();
@@ -13,7 +13,7 @@ const App = (): JSX.Element => {
-
+
);
};
diff --git a/src/components/BottomNavigation/index.tsx b/src/components/BottomNavigation/index.tsx
index 72311f2..421dcbb 100644
--- a/src/components/BottomNavigation/index.tsx
+++ b/src/components/BottomNavigation/index.tsx
@@ -1,8 +1,8 @@
-import { ClipboardListIcon, ChartSquareBarIcon, AdjustmentsIcon } from '@heroicons/react/outline';
+import { AdjustmentsIcon, ChartSquareBarIcon, ClipboardListIcon } from '@heroicons/react/outline';
-const BottomNavigation = (): JSX.Element => {
+const BottomNavigation = ({ className }: { className?: string }): JSX.Element => {
return (
-