Skip to content

Commit

Permalink
Fix import of named Button const
Browse files Browse the repository at this point in the history
  • Loading branch information
patsplat committed Aug 26, 2020
1 parent 4fcf339 commit 5e7b27c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
@@ -1,6 +1,6 @@
import { action } from '@storybook/addon-actions';
import { Meta, Story } from '@storybook/addon-docs/blocks';
import Button from './Button';
import { Button } from './Button';

<Meta title="Docs/Button" component={Button} />

Expand Down
@@ -1,6 +1,6 @@
import { Meta, Story, Preview } from '@storybook/addon-docs/blocks';
import { action } from '@storybook/addon-actions';
import Button from './Button';
import { Button } from './Button';

<Meta title="Docs/Button" component={Button} />

Expand Down
@@ -1,6 +1,6 @@
import { Meta, Story } from '@storybook/addon-docs/blocks';
import { action } from '@storybook/addon-actions';
import Button from './Button';
import { Button } from './Button';

<Meta title="Docs/Button" component={Button} />

Expand Down

0 comments on commit 5e7b27c

Please sign in to comment.