Renamed test directory to match the query name

Co-Authored-By: Asger F <316427+asgerf@users.noreply.github.com>
This commit is contained in:
Napalys Klicius
2025-06-03 14:12:12 +02:00
parent d1869941c2
commit 8521c53a40
12 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import { Component } from '@angular/core';
import { Store, select } from '@ngrx/store';
import { Observable } from 'rxjs';
@Component({
selector: 'minimal-example',
template: `
<div>{{ value$ | async }}</div>
`
})
export class MinimalExampleComponent {
value$: Observable<any>;
constructor(private store: Store<any>) {
this.value$ = this.store.pipe(select('someSlice'));
}
}