Observe state from store
Presentational component
with component feature
☑️ UI has no dependencies
❎ UI has querying details
❎ UI has a container object,
@Component({
features: [
fromStore({ todos$: 'todos' }),
],
selector: 'ivy-todo-list',
template: `
`,
})
export class TodoListComponent {
todos$: Observable;
}
IVY'S BEST KEPT SECRET
not the actual data
structures