UNPKG

mui-forms

Version:

Material UI forms with json based schema

8 lines (7 loc) 237 B
/// <reference types="react" /> import { IFieldProps } from "../../common/field"; interface IProps extends IFieldProps { section: string; } declare function DateControl(props: IProps): JSX.Element; export default DateControl;