mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-28 20:00:10 +02:00

Remove imports of react-bootstrap components from marketing pages GitOrigin-RevId: 12a3446cc42f1438a52f49a893e53a02a1b5be4f
13 lines
405 B
TypeScript
13 lines
405 B
TypeScript
import { renderInReactLayout } from '@/react'
|
|
import '@/utils/meta'
|
|
import '@/utils/webpack-public-path'
|
|
import '@/infrastructure/error-reporter'
|
|
import '@/i18n'
|
|
import SettingsPageRoot from '@/features/settings/components/root'
|
|
|
|
// For react-google-recaptcha
|
|
window.recaptchaOptions = {
|
|
enterprise: true,
|
|
useRecaptchaNet: true,
|
|
}
|
|
renderInReactLayout('settings-page-root', () => <SettingsPageRoot />)
|