blob: 8ac93845333206d5e0e798fcffa7889a7065c68a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import { create } from 'zustand';
const store = create(() => ({}));
export function setValue(key: string, value: any) {
store.setState({ [key]: value });
}
export const useCache = store;
|