move remote hook to global scope (#1752)

This commit is contained in:
jeffvli
2026-02-24 00:45:43 -08:00
parent ceef7964af
commit 61616dd2b9
3 changed files with 7 additions and 3 deletions
@@ -294,3 +294,8 @@ export const useRemote = () => {
[],
);
};
export const RemoteHook = () => {
useRemote();
return null;
};