| 6 | import type { Mesh } from 'three'; |
| 7 | |
| 8 | interface CoffeeMachineProps { |
| 9 | position: [number, number, number]; |
| 10 | onClick?: () => void; |
| 11 | } |
| 12 | |
| 13 | export default function CoffeeMachine({ position, onClick }: CoffeeMachineProps) { |
| 14 | const [hovered, setHovered] = useState(false); |
nothing calls this directly
no outgoing calls
no test coverage detected