UNPKG

283 BTypeScriptView Raw
1import type { Route } from '@react-navigation/routers';
2import * as React from 'react';
3
4/**
5 * Context which holds the route prop for a screen.
6 */
7const NavigationRouteContext = React.createContext<Route<string> | undefined>(
8 undefined
9);
10
11export default NavigationRouteContext;