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