import { Canvas } from "@react-three/fiber"; import { OrbitControls, Stage, useGLTF } from "@react-three/drei"; type ModelViewerProps = { fileUrl: string; height?: string; }; export const ModelViewer = ({ fileUrl, height = "100%" }: ModelViewerProps) => { const { scene } = useGLTF(fileUrl); return ( ); };