mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
13 lines
336 B
JavaScript
13 lines
336 B
JavaScript
|
// 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;
|