<div>
<h2>Hello</h2>
<h2>World</h2>
</div>
{
rootNodeId: "node-a",
nodes: {
"node-a" : {
data: {
type: "div",
nodes: ["node-b", "node-c"]
}
},
"node-b" : {
data: {
type: "h2",
props: { children: "Hello" }
}
},
"node-c" : {
data: {
type: "h2",
props: { children: "World" }
}
}
}
}