Created
October 11, 2017 06:09
-
-
Save nomanHasan/f16cf2f44b8938216fab6e76e048e88a to your computer and use it in GitHub Desktop.
2 #todoapp-angular-ngrx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Input() todo; | |
@Output() created = new EventEmitter<any>(); | |
@Output() deleted = new EventEmitter<any>(); | |
@Output() edited = new EventEmitter<any>(); | |
@Output() completed = new EventEmitter<any>(); | |
constructor() { } | |
ngOnInit() { | |
console.log(this.todo) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment