Reference Source

src/app/profile/profile.component.ts

import { Component, OnInit } from '@angular/core';

/**
 * プロフィール画面
 */
@Component({
  selector: 'app-profile',
  templateUrl: './profile.component.html',
  styleUrls: ['./profile.component.css']
})
export class ProfileComponent implements OnInit {
  constructor() {}
  ngOnInit() {}
}