Skip to content

Instantly share code, notes, and snippets.

@Dornhoth
Created September 11, 2020 16:06
Provide In root
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root',
})
export class TestService {
getTest(): string {
return 'test';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment