diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index e0ce77a..57c15c4 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -5,6 +5,8 @@ import { TabsComponent } from './tabs/tabs.component'; import { DetailsComponent } from './tabs/courses/details/details.component'; import { VideoChapterComponent } from './tabs/courses/video-chapter/video-chapter.component'; import { NotesDetailsComponent } from './tabs/courses/notes-details/notes-details.component'; +import { CalendarComponent } from './calendar/calendar.component'; +import { ProfileComponent } from './profile/profile.component'; const routes: Routes = [ { path: '', pathMatch: 'full', redirectTo: 'welcome' }, @@ -14,7 +16,9 @@ const routes: Routes = [ { component: DetailsComponent, path: 'course-details' }, { component: DetailsComponent, path: 'course-details/:heading' }, { component: VideoChapterComponent, path: 'video-chapter/:heading' }, - { component: NotesDetailsComponent, path: 'notes-details/:heading' } + { component: NotesDetailsComponent, path: 'notes-details/:heading' }, + { component: CalendarComponent, path: 'calendar' }, + { component: ProfileComponent, path: 'profile' }, ]; @NgModule({ diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 88a5879..56ec6d4 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -16,6 +16,8 @@ import { VideoChapterComponent } from './tabs/courses/video-chapter/video-chapte import { NotesDetailsComponent } from './tabs/courses/notes-details/notes-details.component'; import { ServiceWorkerModule } from '@angular/service-worker'; import { environment } from '../environments/environment'; +import { CalendarComponent } from './calendar/calendar.component'; +import { ProfileComponent } from './profile/profile.component'; @NgModule({ declarations: [ @@ -29,6 +31,8 @@ import { environment } from '../environments/environment'; DetailsComponent, VideoChapterComponent, NotesDetailsComponent, + CalendarComponent, + ProfileComponent, ], imports: [ BrowserModule, diff --git a/src/app/calendar/calendar.component.html b/src/app/calendar/calendar.component.html new file mode 100644 index 0000000..6d8082c --- /dev/null +++ b/src/app/calendar/calendar.component.html @@ -0,0 +1 @@ +
calendar works!
diff --git a/src/app/calendar/calendar.component.scss b/src/app/calendar/calendar.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/calendar/calendar.component.spec.ts b/src/app/calendar/calendar.component.spec.ts new file mode 100644 index 0000000..205a029 --- /dev/null +++ b/src/app/calendar/calendar.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { CalendarComponent } from './calendar.component'; + +describe('CalendarComponent', () => { + let component: CalendarComponent; + let fixture: ComponentFixtureprofile works!
diff --git a/src/app/profile/profile.component.scss b/src/app/profile/profile.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/profile/profile.component.spec.ts b/src/app/profile/profile.component.spec.ts new file mode 100644 index 0000000..692b234 --- /dev/null +++ b/src/app/profile/profile.component.spec.ts @@ -0,0 +1,25 @@ +import { async, ComponentFixture, TestBed } from '@angular/core/testing'; + +import { ProfileComponent } from './profile.component'; + +describe('ProfileComponent', () => { + let component: ProfileComponent; + let fixture: ComponentFixture