feat(ui-features): add the tabs component

This commit is contained in:
Alexander Zhukov 2017-05-11 15:05:04 +03:00
parent ada9ac9c1d
commit 78e376bb5a
16 changed files with 90 additions and 28 deletions

View file

@ -7,6 +7,7 @@ import { GridComponent } from './grid/grid.component';
import { IconsComponent } from './icons/icons.component';
import { ModalsComponent } from './modals/modals.component';
import { TypographyComponent } from './typography/typography.component';
import { TabsComponent } from './tabs/tabs.component';
const routes: Routes = [{
path: '',
@ -26,6 +27,9 @@ const routes: Routes = [{
}, {
path: 'typography',
component: TypographyComponent,
}, {
path: 'tabs',
component: TabsComponent,
}],
}];