Most of the components that we create with Angular receive an HTML template, as you saw in previous chapters:
@Component({ selector: 'app-nav', templateUrl: './nav.component.html', styleUrls: ['./nav.component.scss'] })
This ability that the framework has – to create the component connected to its respective view – is fantastic. It has that feature out of the box. It also includes a style sheet totally independent of the rest of the application, as you can see in the previous code.
In the next step, we will add the HTML necessary to give our application a pleasant look, as we suggested in previous chapters.