mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-06-01 15:39:00 +00:00
37 lines
916 B
TypeScript
37 lines
916 B
TypeScript
import { Meta, StoryFn } from '@storybook/react';
|
|
import {
|
|
CreditNoteEmailProps,
|
|
CreditNoteEmailTemplate,
|
|
} from './CreditNoteEmailTemplate';
|
|
|
|
export default {
|
|
title: 'Email/CreditNoteEmailTemplate',
|
|
component: CreditNoteEmailTemplate,
|
|
} as Meta;
|
|
|
|
const Template: StoryFn<CreditNoteEmailProps> = (args) => (
|
|
<CreditNoteEmailTemplate {...args} />
|
|
);
|
|
|
|
export const Default: StoryFn<CreditNoteEmailProps> = Template.bind({});
|
|
|
|
Default.args = {
|
|
total: '$1,000.00',
|
|
items: [{ label: 'Swaniawski Muller', quantity: '1', rate: '$1,000.00' }],
|
|
message: `Hi Ahmed Bouhuolia,
|
|
|
|
Here's invoice # INV-00005 for $1,000.00
|
|
|
|
The amount outstanding of $1,000.00 is due on 10 Oct 2024.
|
|
|
|
From your online payment page you can print a PDF or view your outstanding bills.
|
|
|
|
If you have any questions, please let us know.
|
|
|
|
Thanks,
|
|
Bigcapital`,
|
|
subtotal: '$1,000.00',
|
|
discount: '$1,000.00',
|
|
adjustment: '$1,000.00'
|
|
};
|