mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
18 lines
427 B
JavaScript
18 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,
|
||
|
}
|