File size: 306 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 | 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;
}
|