(props: FormJsxProps)
| 271 | } |
| 272 | |
| 273 | export function Form(props: FormJsxProps): VNode { |
| 274 | const { children, key, ...rest } = props; |
| 275 | return ui.form(withOptionalKey<FormOptions>(rest, key), normalizeContainerChildren(children)); |
| 276 | } |
| 277 | |
| 278 | export function Actions(props: ActionsJsxProps): VNode { |
| 279 | const { children, key, ...rest } = props; |
nothing calls this directly
no test coverage detected