mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 21:03:03 -05:00
9 lines
190 B
TypeScript
9 lines
190 B
TypeScript
import { Injectable } from '@angular/core';
|
|
|
|
@Injectable({ providedIn: 'root' })
|
|
export class HttpService {
|
|
sendTitle(title: string) {
|
|
console.log(`${title} has been sent !!!`);
|
|
}
|
|
}
|