mirror of
https://github.com/getredash/redash.git
synced 2026-03-21 07:00:07 -04: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();
|
|
});
|