fix: Restore missing imports in Room3DViewer
Some checks are pending
Test / backend-test (push) Waiting to run
Test / frontend-test (push) Waiting to run

This commit is contained in:
fullsizemalt 2025-12-27 16:45:46 -08:00
parent feb8b04ba0
commit 66346cb168

View file

@ -1,5 +1,10 @@
import { PlantPosition } from './types';
// ...
import { Canvas } from '@react-three/fiber';
import { OrbitControls, Environment, ContactShadows } from '@react-three/drei';
import { RoomObject } from './RoomObject';
import { Room3D } from '../../lib/layoutApi';
import { useMemo } from 'react';
interface Room3DViewerProps {
room: any;
visMode?: 'STANDARD' | 'HEALTH' | 'YIELD' | 'TEMP' | 'HUMIDITY';