This repository has been archived on 2026-05-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
PolyNotFound/src/app/advertiser/utils/components/navbar-advertiser/navbar-advertiser.component.ts
2021-11-24 21:34:27 +01:00

28 lines
786 B
TypeScript

import { Component } from '@angular/core';
import {Router} from "@angular/router";
@Component({
selector: 'app-navbar-advertiser',
templateUrl: './navbar-advertiser.component.html',
styleUrls: ['./navbar-advertiser.component.scss']
})
export class NavbarAdvertiserComponent
{
routes: string[] = [
"/advertiser", // 0
"/advertiser/adList", // 1
"/advertiser/adsPopularity", // 2
"/advertiser/subjectsPopularity", // 3
"/advertiser/myProfil" // 4
];
url = this.router.url;
urlImage: string = "https://www.figurines-goodies.com/1188-large_default/dewey-duck-tales-disney-funko-pop.jpg" ;
constructor(private router: Router) { }
onDeconnexion(): void {}
}