mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
0c2c3bff8b
[SettingsPage] Add Misc Section GitOrigin-RevId: a4a00c6b2bb920a0c0c6665f30a9657a6e89bc8f
17 lines
427 B
JavaScript
17 lines
427 B
JavaScript
import MiscSection from '../../js/features/settings/components/misc-section'
|
|
import { UserProvider } from '../../js/shared/context/user-context'
|
|
|
|
export const Section = args => {
|
|
window.metaAttributesCache.set('ol-user', { betaProgram: true })
|
|
|
|
return (
|
|
<UserProvider>
|
|
<MiscSection {...args} />
|
|
</UserProvider>
|
|
)
|
|
}
|
|
|
|
export default {
|
|
title: 'Account Settings / Misc / Section',
|
|
component: MiscSection,
|
|
}
|