"use client"; import { useRef, useState } from "react"; import { DrawIoEmbed, DrawIoEmbedRef } from "react-drawio"; export default function Home() { const [imgData, setImgData] = useState(""); const drawioRef = useRef(null); return (
{ console.log(`onExport executed: ${JSON.stringify(data, null, 2)}`); setImgData(data.data); }} onClose={(data) => { console.log(`onClose executed: ${JSON.stringify(data, null, 2)}`); }} />
미리보기
{imgData ? ( ) : (
)}
); }