react-native-uni-carousel
Version:
This small package is based on FlatList. It provides components to help create both a horizontal list of items and a paginated horizontal list of items.
12 lines (9 loc) • 375 B
JavaScript
import { getStorybookUI, configure } from '@storybook/react-native';
// import stories
configure(() => {
require('./stories');
}, module);
// This assumes that storybook is running on the same host as your RN packager,
// to set manually use, e.g. host: 'localhost' option
const StorybookUI = getStorybookUI({ port: 7007, onDeviceUI: true });
export default StorybookUI;