layout({ nodes: nodes, edges: edges }).then(({ nodes, edges }) => {
const { x, y, zoom } = trellis.boundsToViewport(
trellis.getSelectionBounds(nodes, 40),
{ width: width, height: 600 }
)
const options = {
x,
y,
zoom,
width: width,
height: 600,
}
render({ nodes, edges, options })
})