UNPKG

antd-mobile

Version:

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

13 lines (12 loc) 337 B
/// <reference types="react" /> import React from 'react'; import NavBarProps from './PropsType'; export default class NavBar extends React.Component<NavBarProps, any> { static defaultProps: { prefixCls: string; mode: string; iconName: string; onLeftClick(): void; }; render(): JSX.Element; }