Skip to content

Instantly share code, notes, and snippets.

@rajatgeekyants
Created June 14, 2018 10:10
Show Gist options
  • Save rajatgeekyants/4757213ece07358a675335ff3cd24c2c to your computer and use it in GitHub Desktop.
Save rajatgeekyants/4757213ece07358a675335ff3cd24c2c to your computer and use it in GitHub Desktop.
import {NgModule} from '@angular/core';
import {CommonModule} from '@angular/common';
import {TabsComponent} from './tabs.component';
import {TabComponent} from './tab.component';
@NgModule({
imports: [CommonModule],
declarations: [TabsComponent, TabComponent],
exports: [TabsComponent, TabComponent],
})
export class TabsModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment