diff --git a/src/App.jsx b/src/App.jsx index 141ce20..13c23a3 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,17 +1,18 @@ import { createSignal } from "solid-js"; import { BucketListItem } from "./BucketListItem"; import { AddToBucket } from "./AddToBucket"; +import { ClearDoneWishes } from "./ClearDoneWishes"; import { getWishes } from "./util/localStorageUtil"; function App() { const [items, setItems] = createSignal(getWishes()); - return (

Solid Bucket List

+
    {(item) => } diff --git a/src/ClearDoneWishes.jsx b/src/ClearDoneWishes.jsx new file mode 100644 index 0000000..fe028af --- /dev/null +++ b/src/ClearDoneWishes.jsx @@ -0,0 +1,19 @@ +import { saveWish } from "./util/localStorageUtil"; + +export function ClearDoneWishes(props) { + return ( + + ); +}