restructuration des fichiers (pour pouvoir passer plus facilement plusieurs fronts)
This commit is contained in:
parent
48fb0845f1
commit
ef5dd96747
86 changed files with 1343 additions and 335 deletions
|
|
@ -0,0 +1,17 @@
|
|||
import { Component } from '@angular/core';
|
||||
import {ThemeService} from "../../utils/services/theme/theme.service";
|
||||
|
||||
@Component({
|
||||
selector: 'app-navbar-advertiser',
|
||||
templateUrl: './navbar-advertiser.component.html',
|
||||
styleUrls: ['./navbar-advertiser.component.scss']
|
||||
})
|
||||
export class NavbarAdvertiserComponent
|
||||
{
|
||||
urlImage: string = "" ;
|
||||
|
||||
constructor( public themeService: ThemeService ) { }
|
||||
|
||||
onDeconnexion(): void {}
|
||||
|
||||
}
|
||||
Reference in a new issue