mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 14:20:31 +00:00
feat: wip email templates
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
import { Meta, StoryFn } from '@storybook/react';
|
||||
import {
|
||||
PaymentReceivedEmailTemplateProps,
|
||||
PaymentReceivedEmailTemplate,
|
||||
} from './PaymentReceivedEmailTemplate';
|
||||
|
||||
export default {
|
||||
title: 'Email/PaymentReceivedEmailTemplate',
|
||||
component: PaymentReceivedEmailTemplate,
|
||||
} as Meta;
|
||||
|
||||
const Template: StoryFn<PaymentReceivedEmailTemplateProps> = (args) => (
|
||||
<PaymentReceivedEmailTemplate {...args} />
|
||||
);
|
||||
|
||||
export const Default: StoryFn<PaymentReceivedEmailTemplateProps> =
|
||||
Template.bind({});
|
||||
|
||||
Default.args = {};
|
||||
Reference in New Issue
Block a user