From 50cc414db5b3073369051bd7f554caaf62ae72b0 Mon Sep 17 00:00:00 2001 From: Sarah Meko Date: Sat, 17 Aug 2024 22:42:47 -0700 Subject: [PATCH] added path prop to SingleList Component --- src/views/Home.jsx | 6 +++--- src/views/List.jsx | 5 ----- 2 files changed, 3 insertions(+), 8 deletions(-) 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!

);