diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-11-17 15:14:46 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-11-17 15:14:46 +0700 |
| commit | e101de1a0bc1ab08c2bed1fe2bed0ec3ad45a442 (patch) | |
| tree | 14834b231116a1d8060b4c02f664fd23850fa99a /src/common/constants/result.ts | |
| parent | 05ef2c3712192df547587b7d02416f6be0419e1f (diff) | |
Create get credential lib and result constant
Diffstat (limited to 'src/common/constants/result.ts')
| -rw-r--r-- | src/common/constants/result.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common/constants/result.ts b/src/common/constants/result.ts new file mode 100644 index 0000000..229bc87 --- /dev/null +++ b/src/common/constants/result.ts @@ -0,0 +1,5 @@ +export const SHOWING_SELECTIONS = [ + { key: "1", value: "", label: "Semua" }, + { key: "2", value: "diff", label: "Selisih" }, + { key: "3", value: "not-diff", label: "Tidak Selisih" }, +]; |
