32 lines
612 B
JavaScript
32 lines
612 B
JavaScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { text } from '@storybook/addon-knobs';
|
|
import { currencyKnob } from '@woocommerce/knobs';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import Subtotal from '../';
|
|
|
|
export default {
|
|
title: 'WooCommerce Blocks/@blocks-checkout/Subtotal',
|
|
component: Subtotal,
|
|
};
|
|
|
|
export const Default = () => {
|
|
const currency = currencyKnob();
|
|
const totalItems = text( 'Total items', '1000' );
|
|
const totalItemsTax = text( 'Total items tax', '200' );
|
|
|
|
return (
|
|
<Subtotal
|
|
currency={ currency }
|
|
values={ {
|
|
total_items: totalItems,
|
|
total_items_tax: totalItemsTax,
|
|
} }
|
|
/>
|
|
);
|
|
};
|