import { DatePicker, Form, Input, Radio } from 'antd';
import React from 'react';
const FormItem = Form.Item;
const { TextArea } = Input;
//Input
export function returnInput(name: any, label: string, edit: boolean, rules?: any, width?: any) {
return (
)
}
//TextArea
export function returnArea(name: any, edit: boolean, label?: string,) {
const wrapperCol = { offset: label == undefined ? 6 : 0, span: 14 };
return (
)
}
//DatePicker
export function returnDatePicker(name: any, label: string, edit: boolean,) {
return (
)
}
// //RadioGroup
// export function returnRadioGroup(name: any, label: string, options: any, value: any, edit: boolean, onChange:()=>void) {
// return (
//
// onChange(e, name)} />
//
// )
// }