0
0
JRJose Romero
This code allows a ServiceNameService to be injected into a root injectable object.
Library: angular
Shortcut: angular.service
import { Injectable } from '@angular/core';
@Injectable({providedIn: 'root'})
export class ServiceNameService {
constructor() { }
}