Skip to content

Instantly share code, notes, and snippets.

@YonathanMeguira
Last active August 21, 2018 08:25
Show Gist options
  • Save YonathanMeguira/d25b15b02f7e6ad46db17f306b49e097 to your computer and use it in GitHub Desktop.
Save YonathanMeguira/d25b15b02f7e6ad46db17f306b49e097 to your computer and use it in GitHub Desktop.
add component
import { List, Item, ShopikaService } from '../state';
export class AddListComponent {
list: List;
constructor(private shopikaService: ShopikaService) { }
saveList() {
this.shopikaService.addList(this.list);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment