Skip to content

Instantly share code, notes, and snippets.

@Dornhoth
Created September 11, 2020 16:06
Show Gist options
  • Save Dornhoth/b4ab89048c72fa1e6b47bcb3d0b9d29b to your computer and use it in GitHub Desktop.
Save Dornhoth/b4ab89048c72fa1e6b47bcb3d0b9d29b to your computer and use it in GitHub Desktop.
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