feat: wip default message to sales transactions.

This commit is contained in:
Ahmed Bouhuolia
2023-12-14 20:47:52 +02:00
parent 33e5d1a979
commit 217321380a
18 changed files with 325 additions and 38 deletions

View File

@@ -1,14 +1,14 @@
// @ts-nocheck
import { PreferencesEstimatesBoot } from './PreferencesEstimatesFormBoot';
import PreferencesInvoiceFormPage from './PreferencesEstimatesFormPage';
import { PreferencesEstimatesFormPage } from './PreferencesEstimatesFormPage';
/**
* items preferences.
* Estimates preferences.
*/
export default function PreferencesEstimates() {
export function PreferencesEstimates() {
return (
<PreferencesEstimatesBoot>
<PreferencesInvoiceFormPage />
<PreferencesEstimatesFormPage />
</PreferencesEstimatesBoot>
);
}