feat: hook up the invice customize api

This commit is contained in:
Ahmed Bouhuolia
2024-09-12 14:16:07 +02:00
parent a7df23cebc
commit 632c4629de
21 changed files with 391 additions and 169 deletions

View File

@@ -0,0 +1,5 @@
import * as Yup from 'yup';
export const InvoiceCustomizeSchema = Yup.object().shape({
templateName: Yup.string().required('Template Name is required'),
});