organizee-front/src/app/pages/page-account/page-account.component.ts

16 lines
299 B
TypeScript
Raw Normal View History

2022-01-18 17:12:04 +01:00
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-page-account',
templateUrl: './page-account.component.html',
styleUrls: ['./page-account.component.scss']
})
export class PageAccountComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}