cic-staff-client/src/app/pages/accounts/create-account/create-account.component.ts

16 lines
307 B
TypeScript
Raw Normal View History

2020-11-25 08:57:17 +01:00
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-create-account',
templateUrl: './create-account.component.html',
styleUrls: ['./create-account.component.scss']
})
export class CreateAccountComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}