mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
11 lines
293 B
TypeScript
11 lines
293 B
TypeScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import './index.less';
|
|
import { ApplicationComponent } from './ui/ApplicationComponent';
|
|
import 'react-virtualized/styles.css';
|
|
|
|
ReactDOM.render(
|
|
<ApplicationComponent />,
|
|
document.getElementById('phantasmal-world-root')
|
|
);
|