aboutsummaryrefslogtreecommitdiff
path: root/src/components/ToggleShifter.tsx
blob: 4737a6f65b049b75f34c8a10ed23345dece49705 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import Shifter from './Shifter.tsx';
import { useState } from "react";

export default function ToggleShifter() {
    const [isShowingShifter, setShowingShifter] = useState(false);

    return (
        <>
            {isShowingShifter && (
                <Shifter />
            )}
        </>
    )
}