4 lines
205 B
JavaScript
4 lines
205 B
JavaScript
|
|
export const formatJsonString = stringToFormat => {
|
||
|
|
return stringToFormat.split('\n').map((string, index) => <div key={index}>{`${string}`}<br /></div>) // eslint-disable-line react/no-array-index-key
|
||
|
|
}
|