From 00a841d83aeb4fa657d9dbfee58ac9b36eee3382 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Mon, 15 Dec 2025 23:54:24 -0500 Subject: Converted slideshow to react, more shifter progress --- src/components/ToggleShifter.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/components/ToggleShifter.tsx (limited to 'src/components/ToggleShifter.tsx') diff --git a/src/components/ToggleShifter.tsx b/src/components/ToggleShifter.tsx new file mode 100644 index 0000000..4737a6f --- /dev/null +++ b/src/components/ToggleShifter.tsx @@ -0,0 +1,14 @@ +import Shifter from './Shifter.tsx'; +import { useState } from "react"; + +export default function ToggleShifter() { + const [isShowingShifter, setShowingShifter] = useState(false); + + return ( + <> + {isShowingShifter && ( + + )} + + ) +} -- cgit v1.2.3