mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-24 23:35:45 +00:00
feat(FE-40): create NonstockForm component
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import * as Yup from 'yup';
|
||||
|
||||
export const NonstockFormSchema = Yup.object({
|
||||
name: Yup.string().required('Nama wajib diisi!'),
|
||||
});
|
||||
|
||||
export const UpdateNonstockFormSchema = NonstockFormSchema;
|
||||
|
||||
export type NonstockFormValues = Yup.InferType<typeof NonstockFormSchema>;
|
||||
Reference in New Issue
Block a user