English | 简体中文
A visual graph editor based on G6 and React.
npm install --save gg-editor
<script src="https://unpkg.com/gg-editor@${version}/dist/bundle.js"></script>
import GGEditor, { Flow } from 'gg-editor';
const data = {
nodes: [],
edges: [],
};
<GGEditor>
<Flow data={data} />
</GGEditor>
import GGEditor, { Mind } from 'gg-editor';
const data = {
roots: [{
label: '',
children: [{
label: '',
}],
}],
};
<GGEditor>
<Mind data={data} />
</GGEditor>