mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-29 05:00:06 +02:00

Remove imports of react-bootstrap components from marketing pages GitOrigin-RevId: 12a3446cc42f1438a52f49a893e53a02a1b5be4f
9 lines
368 B
TypeScript
9 lines
368 B
TypeScript
import { renderInReactLayout } from '@/react'
|
|
import PreviewSubscriptionChange from '@/features/subscription/components/preview-subscription-change/root'
|
|
import { SplitTestProvider } from '@/shared/context/split-test-context'
|
|
|
|
renderInReactLayout('subscription-preview-change', () => (
|
|
<SplitTestProvider>
|
|
<PreviewSubscriptionChange />
|
|
</SplitTestProvider>
|
|
))
|