feat(popover): add popover showcase (#1556)

This commit is contained in:
Dmitry Nehaychik 2018-02-22 20:13:23 +03:00 committed by GitHub
parent ddb63062f5
commit f4cdf4ab22
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 269 additions and 0 deletions

View file

@ -9,6 +9,7 @@ import { ModalsComponent } from './modals/modals.component';
import { TypographyComponent } from './typography/typography.component';
import { TabsComponent, Tab1Component, Tab2Component } from './tabs/tabs.component';
import { SearchComponent } from './search-fields/search-fields.component';
import { PopoversComponent } from './popovers/popovers.component';
const routes: Routes = [{
path: '',
@ -25,6 +26,9 @@ const routes: Routes = [{
}, {
path: 'modals',
component: ModalsComponent,
}, {
path: 'popovers',
component: PopoversComponent,
}, {
path: 'typography',
component: TypographyComponent,