feat: first commit

This commit is contained in:
eleanor.mao
2025-03-31 22:34:22 +08:00
commit d25187c9c8
390 changed files with 57031 additions and 0 deletions

View File

@ -0,0 +1,7 @@
import { UserInfo } from '@/types/user';
import { SET_USER_INFO, SET_BIND_PHONE } from '../constants';
export const setUserInfo = (value: Partial<UserInfo>) => ({ type: SET_USER_INFO, value });
export const setBindPhone = (value: UserInfo['isBindPhone']) => ({ type: SET_BIND_PHONE, value });