9 lines
132 B
JavaScript
9 lines
132 B
JavaScript
import { atom } from 'recoil'
|
|
|
|
export const pwrGnrSimTypeState = atom({
|
|
key: 'pwrGnrSimType',
|
|
default: {
|
|
type: 'D',
|
|
},
|
|
})
|