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