generate mindmap from json
npm install d3-mindmapTo install d3-mindmap, use the following command:
```
npm i d3-mindmap
`javascript
import getRender from 'd3-mindmap';
const data = {
"name": "Root",
"children": [
{
"name": "Child 1",
"children": [
{"name": "Grandchild 1"},
{"name": "Grandchild 2"}
]
},
{
"name": "Child 2",
"children": [
{"name": "Grandchild 3"},
{"name": "Grandchild 4"}
]
}
]
};
getRender(document.body)(data);
``
Checkout a live demo of d3-mindmap here