Merge pull request #8610 from yosefalnajjarofficial/patch-2

Missing Comma
This commit is contained in:
Michael Shilman 2019-10-29 19:10:55 +08:00 committed by GitHub
commit d37970ee08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -117,7 +117,7 @@ If you want to load from multiple locations, you can use an array:
import { configure } from '@storybook/react';
configure([
require.context('../src/components', true, /\.stories\.js$/)
require.context('../src/components', true, /\.stories\.js$/),
require.context('../lib', true, /\.stories\.js$/)
], module);
```