aboutsummaryrefslogtreecommitdiff
path: root/src/components/ToggleShifter.tsx
diff options
context:
space:
mode:
authorAndrew Lee <[email protected]>2025-12-15 23:54:24 -0500
committerAndrew Lee <[email protected]>2025-12-16 00:52:15 -0500
commit00a841d83aeb4fa657d9dbfee58ac9b36eee3382 (patch)
treeb6a7ca2ac215f9ae52ff71a3656973b5776ce9d1 /src/components/ToggleShifter.tsx
parent66e7218f9c2e0d875a5b06dc31f66a4329cbc032 (diff)
downloadshiftos-archive-website-00a841d83aeb4fa657d9dbfee58ac9b36eee3382.tar.gz
shiftos-archive-website-00a841d83aeb4fa657d9dbfee58ac9b36eee3382.tar.bz2
shiftos-archive-website-00a841d83aeb4fa657d9dbfee58ac9b36eee3382.zip
Converted slideshow to react, more shifter progress
Diffstat (limited to 'src/components/ToggleShifter.tsx')
-rw-r--r--src/components/ToggleShifter.tsx14
1 files changed, 14 insertions, 0 deletions
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 && (
+ <Shifter />
+ )}
+ </>
+ )
+}