peliprint/resources/scripts/index.tsx

17 lines
536 B
TypeScript
Raw Normal View History

2023-07-28 12:24:22 -04:00
import React from 'react';
import ReactDOM from 'react-dom';
import App from '@/components/App';
import { setConfig } from 'react-hot-loader';
import './css/extensions.css';
2023-07-28 12:24:22 -04:00
// 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'));