mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:41:08 +08:00
All the types
This commit is contained in:
parent
0cc425ebc6
commit
89dbd1440e
@ -54,7 +54,8 @@ const generateStories = ({ kind, refId }: { kind: string; refId?: string }): Sto
|
||||
},
|
||||
];
|
||||
|
||||
return storyBase.reduce((accumulator: StoriesHash, current: Partial<Story>, index: number) => {
|
||||
return storyBase.reduce(
|
||||
(accumulator: StoriesHash, current: Partial<Story>, index: number): StoriesHash => {
|
||||
const { id, name } = current;
|
||||
const isRoot: boolean = index === 0;
|
||||
|
||||
@ -74,7 +75,9 @@ const generateStories = ({ kind, refId }: { kind: string; refId?: string }): Sto
|
||||
accumulator[id] = story;
|
||||
|
||||
return accumulator;
|
||||
}, {});
|
||||
},
|
||||
{}
|
||||
);
|
||||
};
|
||||
|
||||
describe('Sidebar', () => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user