@scientist-softserv/webstore-component-library
Version:
A React component library intended for use with WebStore applications
20 lines (16 loc) • 435 B
JSX
import React from 'react'
import LineItemsTable from './LineItemsTable'
import { lineItems } from '../../resources/args'
export default {
title: 'Components/LineItemsTable',
component: LineItemsTable,
}
const Template = (args) => <LineItemsTable {...args} />
export const Default = Template.bind({})
Default.args = {
lineItems,
subtotal: '$3.00',
shippingPrice: '$500.00',
taxAmount: '$0.00',
totalPrice: '$503.00',
}