Added storage for bldg additional

This commit is contained in:
Patrick Alvin Alcala 2025-11-13 17:43:15 +08:00
parent 5c5651b87e
commit b65cc72040

View file

@ -25,3 +25,7 @@ export const _totalUnits = atom(0)
export const _floorArea = atom(0)
export const _additional = atom(false)
export const _additionalFeeList = atom<string[]>([])
export const _additionalCodeList = atom<string[]>([])
export const _additionalAmountList = atom<string[]>([])
export const _additionalUnitList = atom<number[]>([])