Small project to understand how react works. This allow you to visualize any JSON by dropping the file inside the window.
{
"aString": "This is a string value",
"aBoolTrue": true,
"anotherBoolFalse": false,
"anArray": ["first Element", "second Element", "third Element"],
"aNullObject": null,
"anObject": {
"innerValueStr": "Wowwww!",
"price": 19.99,
"content": {
"table": ["this", "that", "Oh!", "Awesome!"],
"available": false,
"anotherObject": {
"yat": "Yay!"
}
}
},
"aNumber": 5,
"aFloat": 2.454
}