From 1f0c58d264e99530863c81c3bf4260e123468695 Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Sun, 5 Oct 2025 16:05:33 +0700 Subject: [PATCH] feat(FE-40): create WAREHOUSE_TYPE_OPTIONS constant --- src/config/constant.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/config/constant.ts b/src/config/constant.ts index 269f5da9..55eed0b3 100644 --- a/src/config/constant.ts +++ b/src/config/constant.ts @@ -92,3 +92,18 @@ export const ROWS_OPTIONS = [ value: 100, }, ]; + +export const WAREHOUSE_TYPE_OPTIONS = [ + { + label: 'AREA', + value: 'AREA', + }, + { + label: 'LOKASI', + value: 'LOKASI', + }, + { + label: 'KANDANG', + value: 'KANDANG', + }, +];