Skip to content

Commit

Permalink
fix(dummy): fix default stories export
Browse files Browse the repository at this point in the history
  • Loading branch information
kikoruiz committed Feb 28, 2023
1 parent ccc7ab4 commit 16b1951
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/components/dummy/src/Dummy.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { ReactLiveBlock } from '@docs/helpers/ReactLiveBlock'
import { ComponentMeta } from '@storybook/react'

import { Dummy } from '.'

Expand All @@ -7,3 +8,8 @@ export const Default = () => (
<Dummy type="foo" />
</ReactLiveBlock>
)

export default {
title: 'Dummy',
component: Default,
} as ComponentMeta<typeof Dummy>

0 comments on commit 16b1951

Please sign in to comment.