@ovine/core
Version:
Build flexible admin system with json.
15 lines (14 loc) • 359 B
TypeScript
import { RendererProps } from 'amis/lib/factory';
import React from 'react';
declare type Props = RendererProps & {
items?: any;
hover?: any;
body?: any;
};
export declare class LibDropdown extends React.Component<Props> {
$wrapperRef: any;
constructor(props: Props);
componentDidMount(): void;
render(): JSX.Element;
}
export {};