For the arrays and objects which contain array/objects with primitives as fields values is possible to use JSON.parse(JSON.stringify(structure)) as posted many times here.
but for modern fields values as React components it will not work, because JSON.parse convertationconversion just ruin sensitive content of React object which contains many special characters.
In this case good to use lodash/cloneDeep (not _.cloneDeep, because it's spoiling tree shaking)