jitsi-meet-electron/app/features/app/components/App.js
Saúl Ibarra Corretgé 1717ca89b3 Change flow syntax
2018-05-24 17:13:21 +02:00

35 lines
628 B
JavaScript

// @flow
import React, { Component } from 'react';
import { Conference } from '../../conference';
import config from '../../config';
/**
* Main component encapsulating the entire application.
*/
export default class App extends Component<*> {
/**
* Initializes a new {@code App} instance.
*
* @inheritdoc
*/
constructor() {
super();
document.title = config.appName;
}
/**
* Implements React's {@link Component#render()}.
*
* @inheritdoc
* @returns {ReactElement}
*/
render() {
return (
<Conference />
);
}
}