This commit is contained in:
Frank
2025-10-10 21:21:55 -04:00
parent b946fd21b1
commit c7dfbbeed0
4 changed files with 51 additions and 33 deletions

View File

@@ -31,6 +31,10 @@ export function A({ children, ...props }: AProps) {
return React.createElement("a", props, children)
}
export function B({ children, ...props }: AProps) {
return React.createElement("b", props, children)
}
export function Span({ children, ...props }: SpanProps) {
return React.createElement("span", props, children)
}