Files
storybook-bug-reproduce/App.tsx
Kyle Fang 0c2b1139c2 Initial commit
Generated by create-react-native-app 3.5.1.
2020-09-07 11:53:50 +08:00

14 lines
433 B
TypeScript

import { configure, getStorybookUI } from "@storybook/react-native";
configure(() => {
// Since require.context doesn't exist in metro bundler world, we have to
// manually import files ending in *.stories.js
require("./stories");
}, module);
export default getStorybookUI({
// Pass AsyncStorage below if you want Storybook to open your
// last visited story after you close and re-open your app
asyncStorage: null
});