UNPKG

react-native-screens

Version:
13 lines (10 loc) 476 B
/** * TS module resolution does not support this RN platform extension pattern out of the box. * Without a base .tsx file, TS will throw a "Cannot find module" error. * * This file satisfies the TS compiler by providing the correct type signatures, * whereas Metro will handle the proper runtime file resolution. */ import React from 'react'; import { TabsHostProps } from './TabsHost.types'; export default function TabsHost(props: TabsHostProps): React.JSX.Element;