Going through the tutorial, I've encountered this:
this.render(hbs`
{{#list-filter filter=(action 'filterByCity') as |results|}}
<ul>
{{#each results as |item|}}
<li class="city">
{{item.city}}
</li>
{{/each}}
</ul>
{{/list-filter}}
`);
I thought backticks represented a string? What is hbs
then? Is it a function that is receiving handlbars snippet as an argument?