feat: Add default customer message and terms and conditions to the transactions.

This commit is contained in:
Ahmed Bouhuolia
2023-12-14 11:01:25 +02:00
parent e5bcb1c19a
commit 33e5d1a979
18 changed files with 658 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
// @ts-nocheck
import { PreferencesInvoicesBoot } from './PreferencesInvoiceFormBoot';
import PreferencesInvoiceFormPage from './PreferencesInvoiceFormPage';
/**
* items preferences.
*/
export default function PreferencesInvoices() {
return (
<PreferencesInvoicesBoot>
<PreferencesInvoiceFormPage />
</PreferencesInvoicesBoot>
);
}