Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 441 Bytes

File metadata and controls

21 lines (17 loc) · 441 Bytes

react-native-app-helpers/Route

A table mapping route keys to the parameters they accept.

Usage

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

const routeParameters: RouteParameters = {
  routeAKey: {
    routeAParameterKey: `Route A Parameter Value`,
  },
  routeBKey: {
    routeBParameterKey: `Route B Parameter Value`,
  },
  routeCKey: {
    routeCParameterKey: `Route C Parameter Value`,
  },
};