1 | import type { ParamListBase } from '@react-navigation/core';
|
2 | import * as React from 'react';
|
3 |
|
4 | import type { LinkingOptions } from './types';
|
5 |
|
6 | const LinkingContext = React.createContext<{
|
7 | options: LinkingOptions<ParamListBase> | undefined;
|
8 | }>({ options: undefined });
|
9 |
|
10 | LinkingContext.displayName = 'LinkingContext';
|
11 |
|
12 | export default LinkingContext;
|