-
Notifications
You must be signed in to change notification settings - Fork 84
Open
Description
Hi @ivanmiletic @stefan-gorules ,
Tried jdm-editor as follows but the width of the decision graph is coming only half of the actual view even though height of the element was set to 100%.
import { DecisionGraph, JdmConfigProvider } from "@gorules/jdm-editor";
import "@gorules/jdm-editor/dist/style.css";
import { useState } from "react";
function App() {
const [value, setValue] = useState({});
return (<div style={{
height: '100%'
}}>
<DecisionGraph value={value} onChange={val => setValue?.(val)} />
);
}
export default App;
anything wrong with my snippet?
Metadata
Metadata
Assignees
Labels
No labels
