wix-style-react
Version:
wix-style-react
28 lines (27 loc) • 862 B
JavaScript
import Carousel from 'wix-style-react/Carousel';
import { storySettings } from './storySettings';
var imagesExamples = [{
value: [{
src: 'https://a-static.besthdwallpaper.com/garfield-wallpaper-2800x2100-815_28.jpg'
}, {
src: 'https://m.media-amazon.com/images/M/MV5BZGMwOGIwZjUtOWQ1OS00YWRjLWJmZGMtN2Y1OWQ3ZDYwYTM3XkEyXkFqcGdeQXVyNzU1NzE3NTg@._V1_.jpg'
}, {
src: 'https://a-static.besthdwallpaper.com/cartoons-garfield-wallpaper-1440x1080-6773_22.jpg'
}],
label: 'three images'
}];
export default {
category: storySettings.category,
storyName: storySettings.storyName,
component: Carousel,
componentPath: '../../src/Carousel/Carousel.js',
exampleProps: {
images: imagesExamples
},
componentProps: {
images: imagesExamples[0].value,
infinite: true,
autoplay: false,
dataHook: storySettings.dataHook
}
};