Spaces:
Sleeping
Sleeping
File size: 156 Bytes
391a73c | 1 2 3 4 5 6 7 8 | export function withPane(props, context) {
const pane = props.pane ?? context.pane;
return pane ? {
...props,
pane
} : props;
}
|