import { useState } from "react"; import { Text } from "@react-three/drei"; import { MainFeatureObject } from "@/components/three/MainFeatureObject"; import { ModelSelectorPlaceholder } from "@/components/three/ModelSelectorPlaceholder"; const ZONE_ORIGIN = [10, 0.4, -8] as const; const ZONE_RADIUS = 4.2; export function MainFeatureZone(): React.JSX.Element { const [caseOpen, setCaseOpen] = useState(false); return ( Pack de Relance Feature setCaseOpen((value) => !value)} /> ); }