diff --git a/src/views/Home.jsx b/src/views/Home.jsx
index 1341a11..83b97a9 100644
--- a/src/views/Home.jsx
+++ b/src/views/Home.jsx
@@ -1,20 +1,20 @@
import './Home.css';
import { SingleList } from '../components';
-export function Home({ data, setListPath }) {
+export function Home({ data, setListPath, path }) {
return (
Hello from the home (/
) page!
- {/* insert path as prop later */}
{data &&
data.map((list) => {
return (
);
})}
diff --git a/src/views/List.jsx b/src/views/List.jsx
index e3c6d99..60ab492 100644
--- a/src/views/List.jsx
+++ b/src/views/List.jsx
@@ -11,11 +11,6 @@ export function List({ data }) {
data.map((list) => {
return ;
})}
- {/**
- * TODO: write some JavaScript that renders the `data` array
- * using the `ListItem` component that's imported at the top
- * of this file.
- */}
>
);