This commit is contained in:
2025-04-23 20:24:12 +07:00
parent f933b5aad5
commit ef52d632bd
63 changed files with 3911 additions and 138 deletions

View File

@@ -0,0 +1,16 @@
import { AvatarType } from '@/types';
import { create } from 'zustand'
interface AvatarDataState {
listAvatar: AvatarType[];
setListAvatar: (list: AvatarType[]) => void;
}
const useAvatarDataStore = create<AvatarDataState>((set) => ({
listAvatar: [],
setListAvatar: (list: AvatarType[]) => set({ listAvatar: list }),
}));
export default useAvatarDataStore;