react-mosaic-component
Version:
A React Tiling Window Manager
10 lines (9 loc) • 358 B
TypeScript
import React from 'react';
import { MosaicWindowContext } from '../contextTypes';
import { MosaicButtonProps } from './MosaicButton';
export declare class SplitButton extends React.PureComponent<MosaicButtonProps> {
static contextType: React.Context<MosaicWindowContext>;
context: MosaicWindowContext;
render(): JSX.Element;
private split;
}