(props: FocusZoneJsxProps)
| 226 | } |
| 227 | |
| 228 | export function FocusZone(props: FocusZoneJsxProps): VNode { |
| 229 | const { children, key, ...rest } = props; |
| 230 | return ui.focusZone( |
| 231 | withOptionalKey<FocusZoneProps>(rest, key), |
| 232 | normalizeContainerChildren(children), |
| 233 | ); |
| 234 | } |
| 235 | |
| 236 | export function FocusTrap(props: FocusTrapJsxProps): VNode { |
| 237 | const { children, key, ...rest } = props; |
nothing calls this directly
no test coverage detected