Logo white

Administrator / maps_core_ng

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • maps_core_ng
  • src
  • app
  • pages
  • pages.component.ts
  • first commit
    05b0b5d8
    Yarik authored
    2017-01-30 19:13:31 +0200  
    Browse Code ยป
pages.component.ts 450 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
import {Component} from '@angular/core';
@Component({
  selector: 'pages',
  styles: [],
  template: `
    <ba-sidebar></ba-sidebar>
    <ba-page-top></ba-page-top>
    <div class="al-main">
      <div class="al-content">
        <ba-content-top></ba-content-top>
        <router-outlet></router-outlet>
      </div>
    </div>
    <ba-back-top position="200"></ba-back-top>
    `
})
export class Pages {

  constructor() {
  }

  ngOnInit() {
  }
}