Navigation Menu

Skip to content

Commit

Permalink
Step 23.22: Create the mobile version of PartiesList component
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha committed Nov 27, 2016
1 parent 67bec8c commit 3828181
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions client/imports/app/mobile/parties-list.component.mobile.ts
@@ -0,0 +1,15 @@
import { Component } from '@angular/core';
import { PaginationService } from 'ng2-pagination';
import { PartiesList } from "../shared-components/parties-list.class";

import template from './parties-list.component.mobile.html';

@Component({
selector: 'parties-list',
template
})
export class PartiesListMobileComponent extends PartiesList {
constructor(paginationService: PaginationService) {
super(paginationService);
}
}

0 comments on commit 3828181

Please sign in to comment.