Files
2026-04-25 06:45:36 +09:00

7 lines
177 B
TypeScript

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