feat: Working on node builder

This commit is contained in:
2024-12-01 17:47:27 -05:00
parent 96a1fac07b
commit 857177032c
6 changed files with 128 additions and 26 deletions

View File

@@ -4,3 +4,10 @@ extension String: NodeRepresentable {
self
}
}
extension String: Node {
public var body: some NodeRepresentable {
self
}
}