overleaf/services/web/frontend/stories/settings/sessions.stories.jsx

15 lines
392 B
React
Raw Normal View History

import SessionsSection from '../../js/features/settings/components/sessions-section'
import { bsVersionDecorator } from '../../../.storybook/utils/with-bootstrap-switcher'
export const Section = args => {
return <SessionsSection {...args} />
}
export default {
title: 'Account Settings / Sessions',
component: SessionsSection,
argTypes: {
...bsVersionDecorator.argTypes,
},
}