You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{#each todos as todo}}
<Tododescription='{{todo.description}}' done='{{todo.done}}'/>
{{else}}
<p>Nothing left to do! Congratulations, turn off your laptop and go outside</p>
{{/each}}
Suggestion via Twitter – an
elseblock for the special case when your array is empty:{{#each todos as todo}} <Todo description='{{todo.description}}' done='{{todo.done}}'/> {{else}} <p>Nothing left to do! Congratulations, turn off your laptop and go outside</p> {{/each}}