Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
306 Bytes
import { useConfigure } from '../connectors/useConfigure';
import type { UseConfigureProps } from '../connectors/useConfigure';
export type ConfigureProps = UseConfigureProps;
export function Configure(props: ConfigureProps) {
useConfigure(props, { $$widgetType: 'ais.configure' });
return null;
}