import { Link } from 'react-router-dom'; export interface UnsupportedMachinePanelProps { machineId: string; } export function UnsupportedMachinePanel({ machineId }: UnsupportedMachinePanelProps) { return (

Viewer asset not registered

{machineId}

The reusable viewer is ready, but this machine does not yet have a GLB/GLTF definition or procedural factory registered in machineAssets.ts. Add a machine definition with parts metadata to enable selection, opacity, exploded view, clipping, annotations, and share links.

Back to catalogue Open working demo
); }