- // TODO: Replace with React.createContext once we can assume React 16+
- import createContext from "mini-create-react-context";
- const createNamedContext = name => {
- const context = createContext();
- context.displayName = name;
- return context;
- };
- const context = /*#__PURE__*/ createNamedContext("Router");
- export default context;
|