diff --git a/src/app/app.module.ts b/src/app/app.module.ts index b6fda379..9c0b574b 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -20,6 +20,7 @@ import { PicturesComponent } from './pages/pictures/pictures.component'; import { AnswersComponent } from './pages/answers/answers.component'; import { EndConfirmationComponent } from './pages/end-confirmation/end-confirmation.component'; import { CreateOrRetrieveComponent } from './page/create-or-retrieve/create-or-retrieve.component'; +import { CalendarComponent } from './calendar/calendar.component'; @NgModule({ @@ -38,6 +39,7 @@ import { CreateOrRetrieveComponent } from './page/create-or-retrieve/create-or-r AnswersComponent, EndConfirmationComponent, CreateOrRetrieveComponent, + CalendarComponent, ], imports: [ diff --git a/src/app/calendar/calendar.component.html b/src/app/calendar/calendar.component.html new file mode 100644 index 00000000..6d8082c2 --- /dev/null +++ b/src/app/calendar/calendar.component.html @@ -0,0 +1 @@ +
calendar works!
diff --git a/src/app/calendar/calendar.component.html.save b/src/app/calendar/calendar.component.html.save new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/src/app/calendar/calendar.component.html.save @@ -0,0 +1 @@ + diff --git a/src/app/calendar/calendar.component.scss b/src/app/calendar/calendar.component.scss new file mode 100644 index 00000000..e69de29b diff --git a/src/app/calendar/calendar.component.spec.ts b/src/app/calendar/calendar.component.spec.ts new file mode 100644 index 00000000..205a029d --- /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: ComponentFixture