grid component

This commit is contained in:
nixa 2016-05-12 16:51:56 +03:00
parent 77d64fe29d
commit 148f1b543f
6 changed files with 310 additions and 0 deletions

View file

@ -4,6 +4,7 @@ import {RouteConfig} from '@angular/router-deprecated';
import {Typography} from './components/typography';
import {Buttons} from './components/buttons';
import {Icons} from './components/incons';
import {Grid} from './components/grid';
@Component({
selector: 'ui',
@ -28,6 +29,11 @@ import {Icons} from './components/incons';
name: 'Icons',
component: Icons,
path: '/icons',
},
{
name: 'Grid',
component: Grid,
path: '/grid',
}
])
export class Ui {