Hi! I looked at the file, but I don’t fully understand what you want to end up with as a result. First glance, it seems to me like you probably need to massage the data in JavaScript before starting to move it to Observables. The data is stored as object keys, not as a list. This will have to be moved using something like object.keys() and iterated like that. You can find information about that here: https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Object/keys
This observable, which you can pretty much choose the format of, can then be bound to using Each and/or nested Each. Keep in mind, tho, that Fuse currently might want you to insert an intermediate Panel to ensure the ordering, as described here: https://www.fusetools.com/learn/fuse#keyword-each
Yeah, the newsfeed example drills into the entries-entry, which is a list, and therefore easier to work with. You need to somehow turn your dictionary-like object into a list, but the first link in my previous post should be helpful in that regard. Let me know if you need additional help.
For this kind of discussion which can get pretty detailed, I also recommend visiting the Fuse Community on Slack.