Skip to content

Commit

Permalink
added dep on data service
Browse files Browse the repository at this point in the history
  • Loading branch information
iislucas committed Jan 17, 2024
1 parent f1bc1ed commit f4ce8ec
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { Component } from '@angular/core';
import { SavedDataService } from '../saved-data.service';

@Component({
selector: 'app-exp-survey',
Expand All @@ -9,4 +10,10 @@ import { Component } from '@angular/core';
})
export class ExpSurveyComponent {

constructor(
private dataService: SavedDataService,
) {
this.dataService.appName()
}

}

0 comments on commit f4ce8ec

Please sign in to comment.