import { useGLTF } from "@react-three/drei"; import { MergedStaticMapModel, type MergedStaticMapModelProps, } from "@/components/three/world/MergedStaticMapModel"; const FERME_VERTICALE_MODEL_PATH = "/models/fermeverticale/model.gltf"; type FermeVerticaleModelProps = Omit; export function FermeVerticaleModel( props: FermeVerticaleModelProps, ): React.JSX.Element { return ( ); } useGLTF.preload(FERME_VERTICALE_MODEL_PATH);