oneframe-react
Version:
Oneframe React ## Components, Hooks, Helper Functions & State Management
12 lines (11 loc) • 363 B
TypeScript
import React from 'react';
import { IForm } from './type';
import PropTypes from 'prop-types';
declare const _default: React.MemoExoticComponent<{
(props: IForm): JSX.Element;
propTypes: {
onSubmit: PropTypes.Validator<(...args: any[]) => any>;
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
};
}>;
export default _default;