Is there an equivalent way to find stories that sit alongside their components with a .stories extension like you can on web:
const req = require.context('../lib/view', true, /.stories.js$/);
configure(() => {
req.keys().forEach(filename => req(filename));
}, module);
Tuesday Oct 04, 2016 at 04:09 GMT
Originally opened as storybook-eol/react-native-storybook#103
Is there an equivalent way to find stories that sit alongside their components with a
.storiesextension like you can on web:(ref: https://getstorybook.io/docs/basics/writing-stories)