make "You" button in navbar show up w/o refreshing page
Some checks failed
deploy / deploy (push) Has been cancelled

This commit is contained in:
Lee
2023-10-21 22:25:41 +01:00
parent 70c5109417
commit aeeaa523f9
4 changed files with 33 additions and 22 deletions

View File

@ -1,6 +1,7 @@
// useStore.ts
import { useEffect, useState } from "react";
export const useStore = <T, F>(
const useStore = <T, F>(
store: (callback: (state: T) => unknown) => unknown,
callback: (state: T) => F,
) => {
@ -13,3 +14,5 @@ export const useStore = <T, F>(
return data;
};
export default useStore;