Skip to content

Instantly share code, notes, and snippets.

@green3g
green3g / File structure
Last active March 23, 2016 17:37
Steal export problems
Project structure
-----------------
/
app/
app_files...
components/
component1/
component1.js
component1.stache
{{#if objectsPromise.isPending}}
<p>Loading...</p>
{{/if}}
{{#if objectsPromise.isResolved}}
{{#each objects}}
{{#each .}}
{{#if renderField(%key)}}
<td>{{formatValue(.)}}</td>
{{/if}}
{{/each}}