mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-25 18:20:09 +02:00
[SettingsPage] Integration Branch GitOrigin-RevId: 5a3c26b2a02d716c4ae3981e3f08b811ae307725
14 lines
451 B
JavaScript
14 lines
451 B
JavaScript
import '../../marketing'
|
|
import './../../utils/meta'
|
|
import './../../utils/webpack-public-path'
|
|
import './../../infrastructure/error-reporter'
|
|
import './../../i18n'
|
|
import '../../features/settings/components/root'
|
|
import ReactDOM from 'react-dom'
|
|
import SettingsPageRoot from '../../features/settings/components/root.tsx'
|
|
|
|
const element = document.getElementById('settings-page-root')
|
|
if (element) {
|
|
ReactDOM.render(<SettingsPageRoot />, element)
|
|
}
|