import type { DictionaryItem, Folder } from "../../types"; export const appState = { selectedFolderId: null as number | null, selectedFolderName: "", folders: [] as Folder[], brands: [] as DictionaryItem[], types: [] as DictionaryItem[], filters: { brandId: "", typeId: "", keyword: "" }, page: 1, pageSize: 12 };