]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/+about/about-instance/instance-statistics.component.ts
Fix stats anchor link
[github/Chocobozzz/PeerTube.git] / client / src / app / +about / about-instance / instance-statistics.component.ts
1 import { Component, Input } from '@angular/core'
2 import { ServerStats } from '@shared/models/server'
3
4 @Component({
5 selector: 'my-instance-statistics',
6 templateUrl: './instance-statistics.component.html',
7 styleUrls: [ './instance-statistics.component.scss' ]
8 })
9 export class InstanceStatisticsComponent {
10 @Input() serverStats: ServerStats
11 }