mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-17 07:50:12 +01:00
14 lines
238 B
TypeScript
14 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() {
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|