A very simple tab component for Angular.
npm install ngx-tab
Import the NgxTabModule to your app.module.ts file:
import { NgxTabModule } from 'ngx-tab'
And finally:
<tabs>
<tab title="Title 01" active=true>Here is content about tab1</tab>
<tab title="Title 02">Hey, Here is content about tab2</tab>
<tab title="Title 03">And finally, Here is content about tab3</tab>
</tabs>