Why work so hard? it's 2020, create a component to handle this type of issues
export class AppTextMultiLine extends React.PureComponent {
render() {
const textArray = this.props.value.split('\n');
return (
{textArray.map((value) => {
return {value};
})}
)
}}