UNPKG

web-components

Version:

Build and Test React Components in real time

36 lines (28 loc) 2.73 kB
'use strict'; var _react = require('react'); var _react2 = _interopRequireDefault(_react); var _storybook = require('@kadira/storybook'); require('modules/gallery/styles/gallery.css'); var _Gallery = require('modules/gallery/components/Gallery'); var _Gallery2 = _interopRequireDefault(_Gallery); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } (0, _storybook.storiesOf)('Gallery', module).add('Gallery without photos', function () { return _react2.default.createElement(_Gallery2.default, null); }).add('Gallery with single photo', function () { return _react2.default.createElement(_Gallery2.default, { images: 'http://science-all.com/images/monkey/monkey-07.jpg' }); }).add('Gallery with two photos', function () { return _react2.default.createElement(_Gallery2.default, { images: ['http://science-all.com/images/monkey/monkey-07.jpg', 'http://science-all.com/images/monkey/monkey-08.jpg'] }); }).add('Gallery with three photos', function () { return _react2.default.createElement(_Gallery2.default, { images: ['http://science-all.com/images/monkey/monkey-06.jpg', 'http://science-all.com/images/monkey/monkey-07.jpg', 'http://science-all.com/images/monkey/monkey-08.jpg'] }); }).add('Gallery with many photos', function () { return _react2.default.createElement(_Gallery2.default, { images: ['http://science-all.com/images/monkey/monkey-01.jpg', 'http://science-all.com/images/monkey/monkey-02.jpg', 'http://science-all.com/images/monkey/monkey-03.jpg', 'http://science-all.com/images/monkey/monkey-04.jpg', 'http://science-all.com/images/monkey/monkey-05.jpg', 'http://science-all.com/images/monkey/monkey-06.jpg', 'http://science-all.com/images/monkey/monkey-07.jpg', 'http://science-all.com/images/monkey/monkey-08.jpg', 'http://science-all.com/images/monkey/monkey-01.jpg', 'http://science-all.com/images/monkey/monkey-02.jpg', 'http://science-all.com/images/monkey/monkey-03.jpg', 'http://science-all.com/images/monkey/monkey-04.jpg', 'http://science-all.com/images/monkey/monkey-05.jpg', 'http://science-all.com/images/monkey/monkey-06.jpg', 'http://science-all.com/images/monkey/monkey-07.jpg', 'http://science-all.com/images/monkey/monkey-08.jpg', 'http://science-all.com/images/monkey/monkey-01.jpg', 'http://science-all.com/images/monkey/monkey-02.jpg', 'http://science-all.com/images/monkey/monkey-03.jpg', 'http://science-all.com/images/monkey/monkey-04.jpg', 'http://science-all.com/images/monkey/monkey-05.jpg', 'http://science-all.com/images/monkey/monkey-06.jpg', 'http://science-all.com/images/monkey/monkey-07.jpg', 'http://science-all.com/images/monkey/monkey-08.jpg'] }); }); //# sourceMappingURL=gallery.js.map