import { PositionalAudio } from "@react-three/drei" import { useStore } from "../hooks/useStore" export const Audio = () => { const audioEnabled = useStore((state) => state.audioEnabled) return ( audioEnabled && ( <> ) ) }