|
1
|
import { createBrowserHistory } from "history"; |
|
2
|
import { locationToRoute } from "./utils"; |
|
3
|
|
|
4
|
export const history = createBrowserHistory(); |
|
5
|
export const RouterContext = wp.element.createContext({ |
|
6
|
route: locationToRoute(history.location), |
|
7
|
}); |
|
8
|
|