mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-25 18:20:09 +02:00
[SettingsPage] Split Misc Section GitOrigin-RevId: b6fc60c571dfaf3aec542f3df8dc826a0ba3ab58
28 lines
671 B
JavaScript
28 lines
671 B
JavaScript
import BetaProgramSection from '../../js/features/settings/components/beta-program-section'
|
|
import { UserProvider } from '../../js/shared/context/user-context'
|
|
|
|
export const SectionNotEnrolled = args => {
|
|
window.metaAttributesCache.set('ol-user', { betaProgram: false })
|
|
|
|
return (
|
|
<UserProvider>
|
|
<BetaProgramSection {...args} />
|
|
</UserProvider>
|
|
)
|
|
}
|
|
|
|
export const SectionEnrolled = args => {
|
|
window.metaAttributesCache.set('ol-user', { betaProgram: true })
|
|
|
|
return (
|
|
<UserProvider>
|
|
<BetaProgramSection {...args} />
|
|
</UserProvider>
|
|
)
|
|
}
|
|
|
|
export default {
|
|
title: 'Account Settings / Beta Program',
|
|
component: BetaProgramSection,
|
|
}
|