Updates to team components.
This commit is contained in:
9
src/store/modified.ts
Normal file
9
src/store/modified.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { create } from 'zustand';
|
||||
|
||||
const store = create(() => ({}));
|
||||
|
||||
export function touch(key: string) {
|
||||
store.setState({ [key]: Date.now() });
|
||||
}
|
||||
|
||||
export default store;
|
||||
Reference in New Issue
Block a user