slug-code/ink/layout/engine.ts
2026-03-31 12:46:52 -04:00

6 lines
177 B
TypeScript

import type { LayoutNode } from './node.js'
import { createYogaLayoutNode } from './yoga.js'
export function createLayoutNode(): LayoutNode {
return createYogaLayoutNode()
}