Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 374 Bytes

File metadata and controls

20 lines (15 loc) · 374 Bytes

react-native-app-helpers/TabRoute

A React component which represents the content of a tab.

Usage

import type { TabRoute } from "react-native-app-helpers";

type OtherProps = {
  otherPropKey: `Other Prop Value`,
};

const route: TabRoute<OtherProps> = ({
  route,
  otherPropKey,
}) => <React.Fragment>
  {/* Your view goes here. */}
</React.Fragment>;