diff --git a/src/views/Home.jsx b/src/views/Home.jsx index 52bee35..41cffed 100644 --- a/src/views/Home.jsx +++ b/src/views/Home.jsx @@ -1,4 +1,5 @@ import './Home.css'; +import { SingleList } from '../components'; export function Home({ data, setListPath }) { return ( @@ -6,11 +7,18 @@ export function Home({ data, setListPath }) {

Hello from the home (/) page!

+ ); diff --git a/src/views/List.jsx b/src/views/List.jsx index b52303c..3c67dd4 100644 --- a/src/views/List.jsx +++ b/src/views/List.jsx @@ -7,11 +7,9 @@ export function List({ data }) { Hello from the /list page!

);