react-native-elements
Version:
React Native Elements & UI Toolkit
14 lines (10 loc) • 505 B
JavaScript
/*eslint-disable no-console */
import React from 'react';
import TabNavigator from 'react-native-tab-navigator';
const Tab = props => {
console.warn(
`Warning: Tab has been deprecated and will be removed in a future version of React Native Elements. For a complete navigation solution that includes Tabs as well as many other features, be sure to check out react-navigation (https://reactnavigation.org) and it's TabRouter.`
);
return <TabNavigator.Item {...props} />;
};
export default Tab;