phantasmal-world/src/actions/items.ts
2019-06-01 16:02:06 +02:00

10 lines
266 B
TypeScript

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));
}
);