feat: wip send invoice preview

This commit is contained in:
Ahmed Bouhuolia
2024-10-26 18:39:36 +02:00
parent 728b4cacd9
commit ce40d67ea2
7 changed files with 198 additions and 80 deletions

View File

@@ -1,7 +1,13 @@
import * as R from 'ramda';
import { Drawer, DrawerSuspense } from '@/components';
import { InvoiceSendMailContent } from './InvoiceSendMailContent';
import withDrawers from '@/containers/Drawer/withDrawers';
import React from 'react';
const InvoiceSendMailContent = React.lazy(() =>
import('./InvoiceSendMailContent').then((module) => ({
default: module.InvoiceSendMailContent,
})),
);
interface InvoiceSendMailDrawerProps {
name: string;