DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
254 Bytes
import { useStore } from '../store';
/**
* Hook for receiving the current connection.
*
* @public
* @returns current connection as a readable store
*/
export function useConnection() {
const { connection } = useStore();
return connection;
}