misc_pterodactyl-panel/resources/scripts/index.tsx
Matthew Penner 31c26a2de4 ui: fix shit
2021-01-27 23:16:58 -07:00

14 lines
476 B
TypeScript

import React from 'react';
import ReactDOM from 'react-dom';
import App from '@/components/App';
import './i18n';
import { setConfig } from 'react-hot-loader';
// 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'));