Page MenuHomec4science

survey-v2.component.ts
No OneTemporary

File Metadata

Created
Fri, Jun 27, 22:48

survey-v2.component.ts

import { Component, OnInit } from '@angular/core';
import { Title } from '@angular/platform-browser';
import { TokenService } from './token.service';
@Component({
selector: 'app-survey-v2',
templateUrl: './survey-v2.component.html',
styleUrls: ['./survey-v2.component.css']
})
export class SurveyV2Component implements OnInit {
constructor(public tokenService: TokenService, private title: Title) { }
ngOnInit() {
this.title.setTitle('Survey V2');
}
}

Event Timeline