buttons page in progress

This commit is contained in:
nixa 2016-05-12 12:04:08 +03:00
parent 85d5441f71
commit 85072185e9
19 changed files with 372 additions and 0 deletions

View file

@ -2,6 +2,7 @@ import {Component, ViewEncapsulation} from '@angular/core';
import {RouteConfig} from '@angular/router-deprecated';
import {Typography} from './components/typography';
import {Buttons} from './components/buttons';
@Component({
selector: 'ui',
@ -17,6 +18,11 @@ import {Typography} from './components/typography';
path: '/typography',
useAsDefault: true
},
{
name: 'Buttons',
component: Buttons,
path: '/buttons',
}
])
export class Ui {