+
Field Mappings
-
-
- {mappings.map((mapping, index) => (
-
-
-
-
-
-
-
- ))}
-
-
- {mappings.length === 0 && (
-
- No mappings configured. Add one to get started.
-
- )}
-
-
Commentators
-
-
- setNewCommentatorName(e.target.value)}
- onKeyDown={(e) => {
- if (e.key === 'Enter') {
- addCommentator()
- e.preventDefault()
- }
- }}
- placeholder='Enter commentator name'
- />
-
-
-
+
- {commentators.map((commentator) => (
-
-
{commentator.name}
+ {mappings.map((mapping, index) => (
+
+
+
+
+
))}
-
+
+ {mappings.length === 0 && (
+
+ No mappings configured. Add one to get started.
+
+ )}
+
+
Commentators
+
+
+ setNewCommentatorName(e.target.value)}
+ onKeyDown={(e) => {
+ if (e.key === 'Enter') {
+ addCommentator()
+ e.preventDefault()
+ }
+ }}
+ placeholder='Enter commentator name'
+ />
+
+
+
+
+ {commentators.map((commentator) => (
+
+ {commentator.name}
+
+
+ ))}
+
+
+
)
}