created components, routing and applied styles
This commit is contained in:
+20
-3
@@ -1,15 +1,32 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
||||
import { BrowserModule } from '@angular/platform-browser';
|
||||
|
||||
import { AppComponent } from './app.component';
|
||||
import { ContactSidebarComponent } from './contact-sidebar/contact-sidebar.component';
|
||||
import { NavbarComponent } from './navbar/navbar.component';
|
||||
import { AboutComponent } from './about/about.component';
|
||||
import { ResumeComponent } from './resume/resume.component';
|
||||
import { PortfolioComponent } from './portfolio/portfolio.component';
|
||||
import { BlogComponent } from './blog/blog.component';
|
||||
import { ContactComponent } from './contact/contact.component';
|
||||
import { AppRoutingModule } from './app-routing.module';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
AppComponent
|
||||
AppComponent,
|
||||
ContactSidebarComponent,
|
||||
NavbarComponent,
|
||||
AboutComponent,
|
||||
ResumeComponent,
|
||||
PortfolioComponent,
|
||||
BlogComponent,
|
||||
ContactComponent
|
||||
],
|
||||
imports: [
|
||||
BrowserModule
|
||||
BrowserModule,
|
||||
AppRoutingModule
|
||||
],
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
||||
providers: [],
|
||||
bootstrap: [AppComponent]
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user