How would you inherit the template from a parent component in angular 4? Most materials exemplify overriding the parent component like this:
import { Component }
if you want to add something to parent template you can just plus it
@Component({ selector: 'child', template: require('/path/to/child-template.html') + require('/path/to/parent-template.html') })
(it is using webpack)