Page MenuHomec4science

survey-v1.component.ts
No OneTemporary

File Metadata

Created
Mon, Feb 24, 07:40

survey-v1.component.ts

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

Event Timeline