mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 00:52:43 +01:00
8 lines
195 B
TypeScript
8 lines
195 B
TypeScript
import { createRoot } from 'react-dom/client';
|
|
import { App } from '@/components/App';
|
|
|
|
// Enable language support.
|
|
import './i18n';
|
|
|
|
createRoot(document.getElementById('app')!).render(<App />);
|