-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapp.js
More file actions
34 lines (25 loc) · 1.04 KB
/
app.js
File metadata and controls
34 lines (25 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/**
* app.js
*
* This is the entry file for the application, only setup and boilerplate
* code.
*/
// Exposing window objects
import './globals';
// Needed for redux-saga es6 generator support
import '@babel/polyfill';
// Import all the third party stuff
import React from 'react';
import ReactDOM from 'react-dom';
// Report designer source
import '@boldreports/javascript-reporting-controls/Scripts/bold.report-designer.min';
import '@boldreports/javascript-reporting-controls/Scripts/bold.report-viewer.min';
import '@boldreports/javascript-reporting-controls/Content/material/bold.reports.all.min.css';
import '@boldreports/javascript-reporting-controls/Content/material/bold.reportdesigner.min.css';
// Reports react base
import '@boldreports/react-reporting-components/Scripts/bold.reports.react.min';
import { Reports } from './components/Reports';
import '!file-loader?name=[name].[ext]!./images/favicon.ico';
const MOUNT_NODE = document.getElementById('app');
ReactDOM.render(<Reports />, MOUNT_NODE);
require('offline-plugin/runtime').install();