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