(props: LayersJsxProps)
| 221 | } |
| 222 | |
| 223 | export function Layers(props: LayersJsxProps): VNode { |
| 224 | const { children, key, ...rest } = props; |
| 225 | return ui.layers(withOptionalKey<LayersProps>(rest, key), normalizeContainerChildren(children)); |
| 226 | } |
| 227 | |
| 228 | export function FocusZone(props: FocusZoneJsxProps): VNode { |
| 229 | const { children, key, ...rest } = props; |
nothing calls this directly
no test coverage detected