Selects a value from the state directly out of your view. For the selection it will use your ReduxStateProvider's select method.
<ul>
<li *ngFor="let todo of ('todo/listItems' | reduxSelect | async)">
{{todo}}
</li>
</ul>
<ul>
<li *ngFor="let todo of ('/some-state-name/todo/listItems' | reduxSelect | async)">
{{todo}}
</li>
</ul>