git.fiddlerwoaroof.com
src/index.js
84348047
 import addMissingHistoryEvents from "./history-events";
 import addChangeUrlEvent from "./change-url-event";
 import installRouter from "./action-router";
 import Fragment from "./fragment";
 import ActionLink from "./action-link";
30db14b1
 
 addMissingHistoryEvents(window, window.history);
 addChangeUrlEvent(window);
 
84348047
 const installBrowserRouter = function(routesConfig) {
   return installRouter(routesConfig, window);
478c0afb
 };
84348047
 
 export { installBrowserRouter, Fragment, ActionLink };