mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
12 lines
384 B
TypeScript
12 lines
384 B
TypeScript
|
import './../utils/meta'
|
||
|
import './../utils/webpack-public-path'
|
||
|
import './../infrastructure/error-reporter'
|
||
|
import './../i18n'
|
||
|
import ReactDOM from 'react-dom'
|
||
|
import SharingUpdatesRoot from '../features/token-access/components/sharing-updates-root'
|
||
|
|
||
|
const element = document.getElementById('sharing-updates-page')
|
||
|
if (element) {
|
||
|
ReactDOM.render(<SharingUpdatesRoot />, element)
|
||
|
}
|