mirror of https://github.com/msgbyte/tailchat
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
315 B
TypeScript
13 lines
315 B
TypeScript
import './init';
|
|
import './dev';
|
|
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import { App } from './App';
|
|
import { initPlugins } from './plugin/loader';
|
|
import './styles';
|
|
|
|
// 先加载插件再开启应用
|
|
initPlugins().then(() => {
|
|
ReactDOM.render(<App />, document.querySelector('#app'));
|
|
});
|