11 lines
344 B
JavaScript
11 lines
344 B
JavaScript
"use strict";
|
|
|
|
import * as React from 'react';
|
|
const MISSING_CONTEXT_ERROR = "Couldn't find a LinkingContext context.";
|
|
export const LinkingContext = /*#__PURE__*/React.createContext({
|
|
get options() {
|
|
throw new Error(MISSING_CONTEXT_ERROR);
|
|
}
|
|
});
|
|
LinkingContext.displayName = 'LinkingContext';
|
|
//# sourceMappingURL=LinkingContext.js.map
|