7 lines
108 B
JavaScript
7 lines
108 B
JavaScript
import { atom } from 'recoil'
|
|
|
|
export const compasDegAtom = atom({
|
|
key: 'compasDegAtom',
|
|
default: 0,
|
|
})
|