fix(3d-viewer): add missing THREE import to fix build error
Some checks are pending
Deploy to Production / deploy (push) Waiting to run
Test / backend-test (push) Waiting to run
Test / frontend-test (push) Waiting to run

This commit is contained in:
fullsizemalt 2025-12-17 07:51:13 -08:00
parent 1ebe7b4d34
commit d8d9c407d8

View file

@ -1,6 +1,7 @@
import { useEffect, useState, Suspense, useMemo, Component, ReactNode } from 'react';
import { Canvas } from '@react-three/fiber';
import { OrbitControls, Text, Instances, Instance, Html } from '@react-three/drei';
import * as THREE from 'three';
import { layoutApi, Floor3DData } from '../lib/layoutApi';
import { Loader2, ArrowLeft } from 'lucide-react';
import { Link } from 'react-router-dom';