This is a codetab module and components for Angular projects. [Live Demo Here](https://jr33d.github.io/ngx-codetab/)
npm install ngx-codetabshell
npm i ngx-codetab --save
`
This will give you access to the module and components available in the library.
$3
After installing the library to get access to the features you need to add it to your AppModule.
`ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { NgxCodeTabModule } from 'ngx-codetab';
@NgModule({
imports: [BrowserModule, NgxCodeTabModule],
declarations: [AppComponent],
})
export class AppModule {}
`
The inside of you app.component.html you can use the component like so:
`html
Hello World">
`
If you would like a collection of tabs together simple wrap them in the collection component
`html
Hello World">
``