import { Component, OnInit } from '@angular/core'; @Component({ selector: 'of-member-profile', templateUrl: './profile.component.html', styleUrls: ['./profile.component.scss'] }) export class ProfileComponent implements OnInit { constructor() { } ngOnInit() { } }