mirror of
http://10.0.2.1:3031/sauer/claude-code.git
synced 2026-06-30 16:56:58 +10:00
7 lines
177 B
TypeScript
7 lines
177 B
TypeScript
|
|
import type { LayoutNode } from './node.js'
|
||
|
|
import { createYogaLayoutNode } from './yoga.js'
|
||
|
|
|
||
|
|
export function createLayoutNode(): LayoutNode {
|
||
|
|
return createYogaLayoutNode()
|
||
|
|
}
|