aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+about/about.component.ts
blob: d242257146a3ca7c4e2b51d454e981d19a74f073 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { Component } from '@angular/core'
import { ScreenService } from '@app/core'

@Component({
  selector: 'my-about',
  templateUrl: './about.component.html'
})

export class AboutComponent {
  constructor (
    private screenService: ScreenService
  ) { }

  get isBroadcastMessageDisplayed () {
    return this.screenService.isBroadcastMessageDisplayed
  }
}