Skip to content

Commit dcb3b78

Browse files
Update projects/ngrx.io/content/examples/store-walkthrough/src/app/book-list/book-list.component.ts
Co-authored-by: Marko Stanimirović <markostanimirovic95@gmail.com>
1 parent bb8cdf4 commit dcb3b78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/ngrx.io/content/examples/store-walkthrough/src/app/book-list/book-list.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ import { Book } from './books.model';
88
})
99
export class BookListComponent {
1010
@Input() books: Array<Book>;
11-
@Output() add = new EventEmitter(<string>);
11+
@Output() add = new EventEmitter<string>();
1212
}

0 commit comments

Comments
 (0)