Files
react-navigation/packages/core/src/UnhandledActionContext.tsx
2020-06-24 17:09:06 +02:00

9 lines
257 B
TypeScript

import * as React from 'react';
import type { NavigationAction } from '@react-navigation/routers';
const UnhandledActionContext = React.createContext<
((action: NavigationAction) => void) | undefined
>(undefined);
export default UnhandledActionContext;