mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 17:12:30 +01:00
6 lines
165 B
TypeScript
6 lines
165 B
TypeScript
|
import * as React from 'react';
|
||
|
import * as ReactDOM from 'react-dom';
|
||
|
import App from "@/components/App";
|
||
|
|
||
|
ReactDOM.render(<App/>, document.getElementById('app'));
|