import { atom } from 'recoil'; const PageName = 'Page'; export const _globalLoadingInfo = atom<{ loading: boolean; tip: string | null; }>({ key: `${PageName}_globalLoadingInfo`, default: { loading: false, tip: null, }, }); export const _themeLoading = atom({ key: `${PageName}_themeLoading`, default: false, });