1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-22 00:52:43 +01:00
Pterodactyl-Panel/resources/scripts/index.tsx
2022-11-25 13:25:03 -07:00

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 />);