import React from "react"; import { Field } from "redux-form"; import JSONEditor from "../editor/JSONEditor"; const JSONEditorField = (props: { name: string }) => { return ( typeof value === "string" ? value : JSON.stringify(value) } /> ); }; export default JSONEditorField;