jitsi-meet-electron/app/features/app/components/App.js
Saúl Ibarra Corretgé 42be533614 Reorganize source code
2018-05-23 17:02:15 -05:00

33 lines
615 B
JavaScript

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 />
);
}
}