import { atom } from 'recoil' export const floorPlanObjectState = atom({ key: 'floorPlanObjectState', default: { floorPlanObjectNo: '', //물건번호 }, dangerouslyAllowMutability: true, }) export const estimateState = atom({ key: 'estimateState', default: {}, dangerouslyAllowMutability: true, })