Currently the README contains a mistake in this example:
<SortableObjects @sortableObjectList={{this.sortableObjectList}} @sortEndAction={{fn this.sortEndAction}} @enableSort={{true}} @useSwap={{true}} @inPlace={{false}} @sortingScope={{"sortingGroup"}}>
{{#each sortableObjectList as |item|}}
<DraggableObject
content=item isSortable=true sortingScope="sortingGroup"
><!-- ^^^ these should not be HTML attributes but rather component arguments ^^^ -->
{{item.name}}
</DraggableObject>
{{/each}}
</SortableObjects>
Currently the README contains a mistake in this example: