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 { PreferencesEstimatesBoot } from './PreferencesEstimatesFormBoot';
import PreferencesInvoiceFormPage from './PreferencesEstimatesFormPage';
/**
* items preferences.
*/
export default function PreferencesEstimates() {
return (
<PreferencesEstimatesBoot>
<PreferencesInvoiceFormPage />
</PreferencesEstimatesBoot>
);
}