UNPKG

antd-mobile-alita

Version:

基于 React 的移动设计规范实现

11 lines (10 loc) 292 B
import * as React from 'react'; import { NavBarProps } from './PropsType'; export default class NavBar extends React.Component<NavBarProps, any> { static defaultProps: { prefixCls: string; mode: string; onLeftClick: () => void; }; render(): JSX.Element; }