diff options
| author | Andrew Lee <[email protected]> | 2025-12-15 23:54:24 -0500 |
|---|---|---|
| committer | Andrew Lee <[email protected]> | 2025-12-16 00:52:15 -0500 |
| commit | 00a841d83aeb4fa657d9dbfee58ac9b36eee3382 (patch) | |
| tree | b6a7ca2ac215f9ae52ff71a3656973b5776ce9d1 /src/components/ToggleShifter.tsx | |
| parent | 66e7218f9c2e0d875a5b06dc31f66a4329cbc032 (diff) | |
| download | shiftos-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.tsx | 14 |
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 /> + )} + </> + ) +} |
