editor-switch.stories.jsx 301 B

123456789101112
  1. import EditorSwitch from '../js/features/source-editor/components/editor-switch'
  2. import { ScopeDecorator } from './decorators/scope'
  3. export default {
  4. title: 'Editor / Switch',
  5. component: EditorSwitch,
  6. decorators: [ScopeDecorator],
  7. }
  8. export const Switcher = () => {
  9. return <EditorSwitch />
  10. }