mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-29 20:11:32 +02:00
[web] rename all the JSX files to .jsx/.tsx GitOrigin-RevId: 82056ae47e017523722cf258dcc83c8a925a28f7
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,
|
|
}
|