Files
jitsi-meet/react/features/always-on-top/index.tsx
Saúl Ibarra Corretgé 1edf88e744 fix(lint) tame linter
2025-01-10 20:09:11 +01:00

14 lines
454 B
TypeScript

import React from 'react';
import ReactDOM from 'react-dom';
import AlwaysOnTop from './AlwaysOnTop';
// Render the main/root Component.
/* eslint-disable-next-line react/no-deprecated */
ReactDOM.render(<AlwaysOnTop />, document.getElementById('react'));
window.addEventListener(
'beforeunload',
/* eslint-disable-next-line react/no-deprecated */
() => ReactDOM.unmountComponentAtNode(document.getElementById('react') ?? document.body));