'ue client'; import { CameraControls, Environment } from '@react-three/drei'; import { CameraControlsImpl } from '@react-three/drei'; import { PresetsType } from '@react-three/drei/helpers/environment-assets'; const { ACTION } = CameraControlsImpl; type EnvProps = { background: PresetsType; }; export const Env = ({ background }: EnvProps) => { return ( <> ); };