(props: SplitPaneJsxProps)
| 242 | } |
| 243 | |
| 244 | export function SplitPane(props: SplitPaneJsxProps): VNode { |
| 245 | const { children, key, ...rest } = props; |
| 246 | return ui.splitPane( |
| 247 | withOptionalKey<SplitPaneProps>(rest, key), |
| 248 | normalizeContainerChildren(children), |
| 249 | ); |
| 250 | } |
| 251 | |
| 252 | export function PanelGroup(props: PanelGroupJsxProps): VNode { |
| 253 | const { children, key, ...rest } = props; |
nothing calls this directly
no test coverage detected