Hi all,
I have a JSON API and I want to display images and some text from an array of content.
[{
"title": "Something",
"img:" "https://example.com/jpg1.jpg"
},
{
"title": "Something 2",
"img:" "https://example.com/jpg2.jpg"
},
{
"title": "Something 3",
"img:" "https://example.com/jpg3.jpg"
}]
What is the best practice to do so in Notch? Can I create Transform Array to use a Cloner Node? Or should I spwan this in JS with addChild().
Thanks you in advance.