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