mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-09 09:09:02 +02:00
2fbb4615f9
* Convert event-tracking to TypeScript * Convert local-storage to TypeScript * Convert mapSeries to TypeScript * Convert SessionStorage to TypeScript * Convert account-upgrade to TypeScript * Convert isValidTeXFile to TypeScript * Convert date functions to TypeScript * Convert EventEmitter to TypeScript * Convert isNetworkError to TypeScript * Convert webpack-public-path to TypeScript * Convert displayNameForUser to TypeScript GitOrigin-RevId: 79c5a2d1101fcd520f3116f0f4af29d974189d94
12 lines
367 B
TypeScript
12 lines
367 B
TypeScript
import './../utils/meta'
|
|
import '../utils/webpack-public-path'
|
|
import './../infrastructure/error-reporter'
|
|
import '@/i18n'
|
|
import ReactDOM from 'react-dom'
|
|
import TokenAccessRoot from '../features/token-access/components/token-access-root'
|
|
|
|
const element = document.getElementById('token-access-page')
|
|
if (element) {
|
|
ReactDOM.render(<TokenAccessRoot />, element)
|
|
}
|