nav menu wave

This commit is contained in:
2026-03-01 22:06:17 -06:00
parent 375b7d7b47
commit 62346321d7
6 changed files with 155 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import {createContext, PropsWithChildren, useContext, useSyncExternalStore} from "react";
const RouterContext = createContext<{}>({});
export function useRouter() {
return useContext(RouterContext);
}
export function RouterProvider(props : PropsWithChildren) {
return <RouterContext.Provider value={{}}>
{props.children}
</RouterContext.Provider>
}