blob: a5cecb4e5771809779434a91a9e0440418a5f3eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import { Component } from '@angular/core';
import { MenuService } from 'src/app/api/menu.service';
import { Menu } from 'src/app/model/menu';
@Component({
selector: 'menu',
templateUrl: './menu.component.html',
styleUrls: [ './menu.component.scss' ]
})
export class MenuComponent {
// this tells the tabs component which Pages
// should be each tab's root Page
constructor(public menuService: MenuService) {
}
}
|