Eidos

Installation Notice

The installation may currently fail. We recommend copying the code below and creating the extension manually in Eidos.

BPMNViewer

By: j0t4

Install Latest (v0.0.1)

A simple BPMN2 XML rendering component for use in gallery cards

import { useEffect, useRef } from "react";
import ReactBpmn from 'react-bpmn';

export default function MermaidRenderer({ text = "" }) {
  const mermaidRef = useRef(null);

  useEffect(() => {
    if (!text.trim()) {
      return
    }
 
  }, [text]);

   return (
    <ReactBpmn
      diagramXML={text}
    />
  );
       
}

Information

Author
j0t4
Type
block
Latest Version
0.0.1
Last Updated
10/09/2025
Published
10/09/2025

Version History

  • v0.0.1 10/09/2025