(props: BoxJsxProps)
| 193 | } |
| 194 | |
| 195 | export function Box(props: BoxJsxProps): VNode { |
| 196 | const { children, key, ...rest } = props; |
| 197 | return ui.box(withOptionalKey<BoxProps>(rest, key), normalizeContainerChildren(children)); |
| 198 | } |
| 199 | |
| 200 | export function Row(props: RowJsxProps): VNode { |
| 201 | const { children, key, ...rest } = props; |
nothing calls this directly
no test coverage detected