Farmbot-Web-App/webpack/history.tsx

5 lines
199 B
TypeScript
Raw Normal View History

2017-06-29 12:54:02 -06:00
import { browserHistory } from "react-router";
export let history = browserHistory;
export let push = (url: string) => history.push(url);
export let pathname = history.getCurrentLocation().pathname;