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