회로 개발중
This commit is contained in:
parent
6a4ed474fc
commit
f34cb4be17
17
src/store/circuitTrestleAtom.js
Normal file
17
src/store/circuitTrestleAtom.js
Normal file
@ -0,0 +1,17 @@
|
||||
import { atom } from 'recoil'
|
||||
|
||||
export const makerState = atom({
|
||||
key: 'makerState',
|
||||
default: { makers: [], selectedMaker: null },
|
||||
dangerouslyAllowMutability: true,
|
||||
})
|
||||
|
||||
export const seriesState = atom({
|
||||
key: 'seriesState',
|
||||
default: { series: [], selectedSeries: [] },
|
||||
})
|
||||
|
||||
export const modelState = atom({
|
||||
key: 'modelState',
|
||||
default: { models: [], selectedModels: [] },
|
||||
})
|
||||
Loading…
x
Reference in New Issue
Block a user