Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 356 Bytes

File metadata and controls

17 lines (12 loc) · 356 Bytes

react-native-app-helpers/TabRoutingProps

Props to be given to tab routing components.

Usage

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

type OtherProps = {
  readonly exampleOtherPropKey: "Example Other Prop Value",
};

const example: TabRoutingProps<"Example Route", OtherProps> = {
  route: "Example Route",
};