mirror of
https://github.com/danog/telegram-tt.git
synced 2024-12-04 02:28:03 +01:00
25 lines
565 B
TypeScript
25 lines
565 B
TypeScript
|
import React from '../src/lib/teact/teact';
|
||
|
import TeactDOM from '../src/lib/teact/teact-dom';
|
||
|
import { addReducer, getDispatch } from '../src/lib/teact/teactn';
|
||
|
import '../src/global';
|
||
|
import Main from '../src/components/main/Main';
|
||
|
|
||
|
export default () => {
|
||
|
return new Promise((resolve) => {
|
||
|
const root = document.createElement('div');
|
||
|
document.body.appendChild(root);
|
||
|
|
||
|
getDispatch().init();
|
||
|
getDispatch().initApi();
|
||
|
|
||
|
TeactDOM.render(
|
||
|
<Main />,
|
||
|
root,
|
||
|
);
|
||
|
|
||
|
addReducer('saveSession', () => {
|
||
|
resolve();
|
||
|
});
|
||
|
});
|
||
|
};
|