Guides
No React? Drive the same graph with createScene.
import { createScene, createCanvas2DBackend } from 'limn'
const scene = createScene(createCanvas2DBackend(canvas))
const row = scene.create('box', {
style: {
flexDirection: 'row',
justifyContent: 'space-between',
padding: 16,
},
})
const label = scene.create('text', { text: 'Hello' })
scene.add(row)
scene.add(label, row)
React and Scene share the core Node model — pick the frontend edge that matches your host.