12 lines
147 B
TypeScript
12 lines
147 B
TypeScript
|
|
|
|
import { atom } from 'recoil'
|
|
|
|
// App全局状态
|
|
export const useAppModel = atom({
|
|
key: 'appModel',
|
|
default: {
|
|
isLoading: false,
|
|
}
|
|
})
|