mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-12 03:42:08 +00:00
6 lines
177 B
TypeScript
6 lines
177 B
TypeScript
import type { LayoutNode } from './node.js'
|
|
import { createYogaLayoutNode } from './yoga.js'
|
|
|
|
export function createLayoutNode(): LayoutNode {
|
|
return createYogaLayoutNode()
|
|
}
|