2016-11-14 09:08:54 -08:00

11 lines
155 B
TypeScript

import { Injectable } from '@angular/core';
@Injectable()
export class DataService {
constructor() { }
getHeroName() {
return 'Windstorm';
}
}