2021-05-10 18:15:25 +02:00
|
|
|
import { ChangeDetectionStrategy, Component } from '@angular/core';
|
2020-11-04 13:36:30 +01:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-pages',
|
|
|
|
templateUrl: './pages.component.html',
|
2021-03-14 09:23:20 +01:00
|
|
|
styleUrls: ['./pages.component.scss'],
|
2021-05-10 18:15:25 +02:00
|
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
2020-11-04 13:36:30 +01:00
|
|
|
})
|
2021-04-27 15:45:40 +02:00
|
|
|
export class PagesComponent {
|
|
|
|
url: string = 'https://dashboard.sarafu.network/';
|
2020-11-25 09:04:41 +01:00
|
|
|
|
2021-05-10 18:15:25 +02:00
|
|
|
constructor() {}
|
2020-11-04 13:36:30 +01:00
|
|
|
}
|