phantasmal-world/src/actions/items.ts

10 lines
266 B
TypeScript
Raw Normal View History

import { memoize } from "lodash";
import { getItems } from "../data/loading/items";
import { itemStore } from "../stores/ItemStore";
export const loadItems = memoize(
async (server: string) => {
itemStore.items.replace(await getItems(server));
}
);