mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-06-11 08:13:55 +08:00
9 lines
257 B
TypeScript
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;
|