February 2019
Intermediate to advanced
446 pages
10h 55m
English
The AppComponent root has been modified slightly (changes are marked in bold). We are just adding two minor changes:
import { Component } from '@angular/core';import { RestService } from './rest.service';@Component({ selector: 'mmj-root', templateUrl: './app.component.html', styleUrls: ['./app.component.scss']})export class AppComponent { isCollapsed: boolean = false; title = 'OTRS'; constructor(private rest: RestService) {}}
Read now
Unlock full access