UNPKG

272 BTypeScriptView Raw
1import React from 'react';
2import { default as RN } from 'react-native';
3export interface PropsType {
4 key?: string;
5 style?: RN.ViewStyle;
6 active: boolean;
7}
8export declare class TabPane extends React.PureComponent<PropsType, {}> {
9 render(): JSX.Element;
10}