chore(FE-43): add ROWS_OPTIONS constant

This commit is contained in:
ValdiANS
2025-10-04 12:22:43 +07:00
parent 6dec9268c9
commit bbe55ee4c3
+19
View File
@@ -72,4 +72,23 @@ export const MAIN_DRAWER_LINKS = [
}, },
], ],
}, },
] as const;
export const ROWS_OPTIONS = [
{
label: '10',
value: 10,
},
{
label: '20',
value: 20,
},
{
label: '50',
value: 50,
},
{
label: '100',
value: 100,
},
]; ];