From bbe55ee4c38b8cb8f8804982b5b54b57e7bdc0c8 Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Sat, 4 Oct 2025 12:22:43 +0700 Subject: [PATCH] chore(FE-43): add ROWS_OPTIONS constant --- src/config/constant.ts | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/config/constant.ts b/src/config/constant.ts index 1abf588a..269f5da9 100644 --- a/src/config/constant.ts +++ b/src/config/constant.ts @@ -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, + }, ];