export function Textfield(props) {
const { name, label } = props;
return (
);
}
export function MultiLinefield(props) {
const { name, label } = props;
return (
Do not include personal or financial information, like your
National Insurance number or credit card details.
);
}
export function DateField(props) {
const { name, label } = props;
return (
);
}
export function YesNofield(props) {
const { name, label } = props;
return (
);
}
export function PickList(props) {
const { name, label } = props;
return (
);
}
export function NumericField(props) {
const { name, label } = props;
return (
);
}
export function DecimalField(props) {
const { name, label } = props;
return (
);
}
export function ReadOnlyfield(props) {
const { name, label } = props;
return (
);
}