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