- {configuration.rows.map((row) => {
- return (
- <>
- {row.type === FORM_ROW_TYPE.GROUP && (
-
- {row.fields.map((field) => {
- return (
-
- );
+
+
+ {configuration.rows.map((row) => {
+ return (
+ <>
+ {row.type === FORM_ROW_TYPE.GROUP && (
+
+ {row.fields.map((field) => {
+ return (
+
+ );
+ })}
+
+ )}
+ {row.type === FORM_ROW_TYPE.SINGLE &&
+ row.fields.map((field) => {
+ return
;
})}
-
- )}
- {row.type === FORM_ROW_TYPE.SINGLE &&
- row.fields.map((field) => {
- return
;
- })}
- >
- );
- })}
+ >
+ );
+ })}
+