  
export class AppModule { }
`
4. Add the component to your view for basic
`html
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { NgxCodeHighlightModule } from '@ngx-tiny/code-highlight';
import { AppComponent } from './app.component';
@NgModule({
imports: [BrowserModule, NgxCodeHighlightModule],
declarations: [AppComponent],
bootstrap: [AppComponent]
})
export class AppModule {
]]>
``