CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
RemoteInputContext.tsx14 linesDownload Raw Back to remoteInput
1/**2 * @license3 * Copyright 2025 Qwen Team4 * SPDX-License-Identifier: Apache-2.05 */6 7import { createContext, useContext } from 'react';8import type { RemoteInputWatcher } from './RemoteInputWatcher.js';9 10export const RemoteInputContext = createContext<RemoteInputWatcher | null>(11  null,12);13export const useRemoteInput = () => useContext(RemoteInputContext);14 
basant307/AI_Governance_Project · CoolFace