Repository URL to install this package:
|
Version:
0.9.5 ▾
|
import React from 'react'
import { storiesOf } from '@storybook/react'
import { MiniCartBundle } from 'abstractions/BundleProduct'
const mandatoryProducts = [{}, {}]
const addonProducts = [{}, {}]
storiesOf('abstractions/BundleProduct', module).add('MiniCartBundle', () => (
<MiniCartBundle
mandatoryProducts={mandatoryProducts}
addonProducts={addonProducts}
/>
))