as
lib\history.ts
import { createBrowserHistory } from "history";
export const history = createBrowserHistory();
-------------------------------------------------
other.ts
history.push();
-------------------------------------------------
index.tsx
import { Router } from "react-router-dom";
import { history } from "lib/history";
ReactDOM.render(
<Router history={history}>
<App />
</Router>
document.getElementById("root")
);