mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
10 lines
266 B
TypeScript
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));
|
|
}
|
|
);
|