"use client"; import { useBoolean } from "usehooks-ts"; import { Button } from "../ui/button/button"; import { Dialog, DialogContent, DialogHeader } from "../ui/dialog"; import LIcon from "../ui/lucid-icon/lucid-icon"; const DevelopmentPanel = () => { const panelBoolean = useBoolean(); // const { strategy, setStrategy } = useApp(); return ( <>
Development Panel
App Strategy
{/* */}
); }; export default DevelopmentPanel;