mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 16:00:14 +01:00
13 lines
238 B
TypeScript
13 lines
238 B
TypeScript
import {Component} from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'ngx-contact-form',
|
|
templateUrl: './contact.component.html',
|
|
styleUrls: ['./contact.component.scss'],
|
|
})
|
|
export class ContactFormComponent {
|
|
constructor() {
|
|
|
|
}
|
|
|
|
}
|