UNPKG

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