I use a "react-json-view" to display a json. The problem is, the library trims all white spaces in delivered strings.
I have a data with valid json:
{
title: "some title end of title"
}
And I receive output in my json component:
{
title: "some title end of title"
}
Is there a way to get this json in the original shape? In code inspector there is a original json with spaces - only in react-json-view component the data is changed.