Quiz_dashboard/src/Pages/ReSeller/Profile/Form/formUtils.ts
2024-09-17 11:39:19 +03:00

14 lines
286 B
TypeScript

import * as Yup from "yup";
export const getInitialValues = (objectToEdit: Partial<any>) => {
return {
id: objectToEdit?.id ?? null,
name: objectToEdit?.name ?? null,
};
};
export const getValidationSchema = () => {
// validate input
return Yup.object().shape({});
};