Refactored forms and pages.

This commit is contained in:
Mike Cao 2023-10-07 18:55:14 -07:00
parent 1325abe31d
commit 6253d55790
57 changed files with 209 additions and 208 deletions

9
src/store/cache.js Normal file
View file

@ -0,0 +1,9 @@
import { create } from 'zustand';
const store = create(() => ({}));
export function setValue(key, value) {
store.setState({ [key]: value });
}
export default store;