Skip to content

Commit

Permalink
fix: correct import StoriesKind
Browse files Browse the repository at this point in the history
  • Loading branch information
atanasster committed Mar 16, 2020
1 parent b266ff6 commit 812b515
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/instrument/src/babel/csf-stories.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
StoriesStore,
Story,
StoryKind,
StoriesKind,
Stories,
} from '@component-controls/specification';
import { File } from '@babel/types';
Expand Down Expand Up @@ -52,7 +52,7 @@ export const extractCSFStories = (ast: File): StoriesStore => {
(acc, componentName) => ({ ...acc, [componentName]: undefined }),
components,
);
const kind: StoryKind = {
const kind: StoriesKind = {
...attributes,
components: {},
};
Expand Down

0 comments on commit 812b515

Please sign in to comment.