Pretty Printing JSON with React

后端 未结 5 2255
醉酒成梦
醉酒成梦 2020-12-23 14:23

I\'m using ReactJS and part of my app requires pretty printed JSON.

I get some JSON like: { \"foo\": 1, \"bar\": 2 }, and if I run that through

5条回答
  •  眼角桃花
    2020-12-23 14:45

    The 'react-json-view' provides solution rendering json string.

    import ReactJson from 'react-json-view';
    
    

提交回复
热议问题