I want to use handlebars #each
with an object that's not an array.
How do I do that? I need it to still work with meteor's special features with #each
.
My object is in the form of:
{
john: "hello",
bob: "hi there"
}
I'm trying to get an output like this:
<div>hello</div>
<div>hi there</div>