0bab40b248
This reverts commit e3b108654f
.
17 lines
No EOL
546 B
TypeScript
17 lines
No EOL
546 B
TypeScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import App from '@/components/App';
|
|
import { setConfig } from 'react-hot-loader';
|
|
import './blueprint/css/extensions.css';
|
|
|
|
// Enable language support.
|
|
import './i18n';
|
|
|
|
// Prevents page reloads while making component changes which
|
|
// also avoids triggering constant loading indicators all over
|
|
// the place in development.
|
|
//
|
|
// @see https://github.com/gaearon/react-hot-loader#hook-support
|
|
setConfig({ reloadHooks: false });
|
|
|
|
ReactDOM.render(<App />, document.getElementById('app')); |