contact form implementation

This commit is contained in:
2024-05-01 23:25:49 +05:30
parent 62ead2b2fe
commit 26e7bd5d44
7 changed files with 77 additions and 11 deletions
+3 -1
View File
@@ -1,6 +1,7 @@
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { HttpClientModule } from '@angular/common/http';
import { FormsModule } from '@angular/forms';
import { AppComponent } from './app.component';
import { ContactSidebarComponent } from './contact-sidebar/contact-sidebar.component';
@@ -29,7 +30,8 @@ import { SpinnerComponent } from './spinner/spinner.component';
imports: [
BrowserModule,
HttpClientModule,
AppRoutingModule
AppRoutingModule,
FormsModule
],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
providers: [httpInterceptorProviders],