mirror of
https://github.com/getredash/redash.git
synced 2025-12-19 17:37:19 -05:00
* Allow to override frontend routes * Configure app before initializing ApplicationArea * Refine code
12 lines
322 B
JavaScript
12 lines
322 B
JavaScript
import React from "react";
|
|
import ReactDOM from "react-dom";
|
|
|
|
import "@/config";
|
|
|
|
import ApplicationArea from "@/components/ApplicationArea";
|
|
import offlineListener from "@/services/offline-listener";
|
|
|
|
ReactDOM.render(<ApplicationArea />, document.getElementById("application-root"), () => {
|
|
offlineListener.init();
|
|
});
|