+ {groupChildren?.map((child, childIndex) => (
+
+
+ {!!arrayLabel && (
+ {arrayLabel}
+ )}
+
+
+ {fields.map(field => (
+
+ ))}
+
+ ))}
+
+
+
+
+
+ )}
+ />
+ >
+ )
+}
+
+export default FieldArray
diff --git a/src/components/Form/FieldArray/index.ts b/src/components/Form/FieldArray/index.ts
new file mode 100644
index 00000000..fc42e5c6
--- /dev/null
+++ b/src/components/Form/FieldArray/index.ts
@@ -0,0 +1 @@
+export { default } from './FieldArray'
diff --git a/src/config/types.ts b/src/config/types.ts
index 41891c82..6d753648 100644
--- a/src/config/types.ts
+++ b/src/config/types.ts
@@ -15,6 +15,7 @@ type DynamicFieldType =
| 'image'
| 'connections'
| 'search'
+ | 'array'
export type DynamicSection