feat(ui-features): add a typography page

This commit is contained in:
Alexander Zhukov 2017-05-06 15:41:52 +03:00
parent c0f39a1dec
commit ada9ac9c1d
14 changed files with 257 additions and 0 deletions

View file

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