icons page

This commit is contained in:
nixa 2016-05-12 14:50:06 +03:00
parent 8dbdd2fa64
commit 5a2a990141
13 changed files with 465 additions and 5 deletions

View file

@ -1,8 +1,9 @@
import {Component, ViewEncapsulation} from '@angular/core';
import {Component} from '@angular/core';
import {RouteConfig} from '@angular/router-deprecated';
import {Typography} from './components/typography';
import {Buttons} from './components/buttons';
import {Icons} from './components/incons';
@Component({
selector: 'ui',
@ -22,14 +23,15 @@ import {Buttons} from './components/buttons';
name: 'Buttons',
component: Buttons,
path: '/buttons',
},
{
name: 'Icons',
component: Icons,
path: '/icons',
}
])
export class Ui {
constructor() {
}
ngOnInit() {
}
}