diff --git a/source/src/app/info/info.component.html b/source/src/app/info/info.component.html index 65ad195..73e0aaa 100644 --- a/source/src/app/info/info.component.html +++ b/source/src/app/info/info.component.html @@ -1,99 +1,101 @@ - - - \ No newline at end of file +
+ + + +
\ No newline at end of file diff --git a/source/src/app/info/info.component.ts b/source/src/app/info/info.component.ts index 8643a96..a0fa284 100644 --- a/source/src/app/info/info.component.ts +++ b/source/src/app/info/info.component.ts @@ -1,4 +1,5 @@ -import { Component } from '@angular/core'; +import {Component, inject} from '@angular/core'; +import {MobileService} from '../mobile.service'; @Component({ selector: 'app-info', @@ -7,5 +8,5 @@ import { Component } from '@angular/core'; styleUrl: './info.component.scss' }) export class InfoComponent { - + public mobileService = inject(MobileService); }