Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ricmello/93e99e90b5cd1d0dc46a1d2de3d3577e to your computer and use it in GitHub Desktop.
Save ricmello/93e99e90b5cd1d0dc46a1d2de3d3577e to your computer and use it in GitHub Desktop.
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-<%= dasherize(name) %>-list',
template: `
<p>
list works!
</p>
`,
styles: []
})
export class <%= classify(name) %>ListComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment