aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+about/about-instance/instance-statistics.component.ts
blob: ac69844388d6b89a8fc4a05d814c867e475de4ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import { Component, Input } from '@angular/core'
import { ServerStats } from '@shared/models/server'

@Component({
  selector: 'my-instance-statistics',
  templateUrl: './instance-statistics.component.html',
  styleUrls: [ './instance-statistics.component.scss' ]
})
export class InstanceStatisticsComponent {
  @Input() serverStats: ServerStats
}