@talend/react-forms
Version:
React forms library based on json schema form.
15 lines (14 loc) • 558 B
TypeScript
export default TabsAdapter;
declare function TabsAdapter(props: any): import("react/jsx-runtime").JSX.Element;
declare namespace TabsAdapter {
namespace propTypes {
let errors: PropTypes.Requireable<object>;
let schema: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
items: PropTypes.Validator<(PropTypes.InferProps<{
title: PropTypes.Validator<string>;
items: PropTypes.Validator<any[]>;
}> | null | undefined)[]>;
}>>>;
}
}
import PropTypes from 'prop-types';