'use client' import { emitter } from '@pascal-app/core' import Image from 'next/image' import { ActionButton } from "./action-button"; export function CameraActions() { const goToTopView = () => { emitter.emit('camera-controls:top-view') } const orbitCW = () => { emitter.emit('camera-controls:orbit-cw') } const orbitCCW = () => { emitter.emit('camera-controls:orbit-ccw') } return (
{/* Orbit CCW */} Orbit Left {/* Orbit CW */} Orbit Right {/* Top View */} Top View
) }