plot-plan-designer
Version:
Design Editor Tools with React.js + ant.design + fabric.js
23 lines (22 loc) • 636 B
TypeScript
export default Title;
declare class Title extends React.Component<any, any, any> {
static propTypes: {
currentMenu: PropTypes.Requireable<string>;
onChangeMenu: PropTypes.Requireable<(...args: any[]) => any>;
current: PropTypes.Requireable<string>;
};
constructor(props: any);
constructor(props: any, context: any);
state: {
visible: boolean;
};
componentDidMount(): void;
handlers: {
goGithub: () => void;
goDocs: () => void;
showHelp: () => void;
};
render(): JSX.Element;
}
import React from 'react';
import PropTypes from 'prop-types';