Cleanup some complexity that is not needed (#50)
This commit is contained in:
@@ -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 };
|
||||
}
|
||||
Reference in New Issue
Block a user