UNPKG

292 BTypeScriptView Raw
1import * as React from 'react';
2import { NavBarProps } from './PropsType';
3export default class NavBar extends React.Component<NavBarProps, any> {
4 static defaultProps: {
5 prefixCls: string;
6 mode: string;
7 onLeftClick: () => void;
8 };
9 render(): JSX.Element;
10}