bigbluebutton-Github/bigbluebutton-html5/client/legacy.jsx

13 lines
383 B
React
Raw Normal View History

2019-04-24 06:23:46 +08:00
import React from 'react';
import { render } from 'react-dom';
import Legacy from '/imports/ui/components/legacy/component';
// This class is the start of the content loaded on legacy (unsupported) browsers.
// What is included here needs to be minimal and carefully considered because some
// things can't be polyfilled.
render(
<Legacy />,
document.getElementById('app'),
);