jitsi-meet-electron/app/index.js
2018-05-24 17:13:21 +02:00

13 lines
223 B
JavaScript

// @flow
import React from 'react';
import { render } from 'react-dom';
import { App } from './features/app';
/**
* Render the main / root application.
* $FlowFixMe
*/
render(<App />, document.getElementById('app'));