Cleanup some complexity that is not needed (#50)

This commit is contained in:
Neil Dwyer
2024-05-06 15:21:03 -07:00
committed by GitHub
parent 060d402836
commit c039254501
4 changed files with 99 additions and 104 deletions

View File

@@ -1,3 +1,12 @@
export function CloudProvider({ children }: { children: React.ReactNode }) {
return <>{children}</>;
}
export function useCloud() {
const generateToken: () => Promise<string> = async () => {
throw new Error("Not implemented");
};
const wsUrl = "";
return { generateToken, wsUrl };
}