mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-24 15:25:46 +00:00
feat(FE): Add filter schemas and types for master data components
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
import { string, object } from 'yup';
|
||||
|
||||
export const ProductionStandardFilterSchema = object().shape({
|
||||
project_category: string().nullable(),
|
||||
});
|
||||
|
||||
export type ProductionStandardFilterType = {
|
||||
project_category: string | null;
|
||||
};
|
||||
Reference in New Issue
Block a user