wix-style-react
Version:
25 lines (22 loc) • 508 B
JavaScript
import React from 'react';
import { storiesOf } from '@storybook/react';
import SkeletonRectangle from '..';
const tests = [
{
describe: '',
its: [
{
it: 'default',
props: { width: '30px', height: '30px' },
},
],
},
];
tests.forEach(({ describe, its }) => {
its.forEach(({ it, props }) => {
storiesOf(
`${SkeletonRectangle.displayName}${describe ? '/' + describe : ''}`,
module,
).add(it, () => <SkeletonRectangle {...props} />);
});
});