import { Injectable } from "@angular/core";
@Injectable({
providedIn: "root"
})
export class TodoService {
constructor() {}
}
Minimal Angular Service | Example
Mar - 11 - 1 min
import { Injectable } from "@angular/core";
@Injectable({
providedIn: "root"
})
export class TodoService {
constructor() {}
}