summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/app.module.ts
diff options
context:
space:
mode:
authorJacob <gatelyjm@clarkson.edu>2019-12-03 08:58:29 -0500
committerTucker Evans <tuckerevans24@gmail.com>2019-12-07 15:02:44 -0500
commit33ff048f5efb30e767780f24424588af562ea400 (patch)
treee37e66274d43269bc4d606aa325477ffa37aca67 /recipeBuddy/src/app/app.module.ts
parent445816bc374be098156b33e2c7051091f391786f (diff)
Added new recipe card and main page components. Added new files in each
of these components for html, css, ts, and spec.ts. HTML and CSS files were updated with code from stackblitz. Apparently this thing also thinks I changed the app.module.ts file, but I do not think I did.
Diffstat (limited to 'recipeBuddy/src/app/app.module.ts')
-rw-r--r--recipeBuddy/src/app/app.module.ts6
1 files changed, 5 insertions, 1 deletions
diff --git a/recipeBuddy/src/app/app.module.ts b/recipeBuddy/src/app/app.module.ts
index f657163..8467740 100644
--- a/recipeBuddy/src/app/app.module.ts
+++ b/recipeBuddy/src/app/app.module.ts
@@ -2,10 +2,14 @@ import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
+import { MainPageComponent } from './main-page/main-page.component';
+import { RecipeCardComponent } from './recipe-card/recipe-card.component';
@NgModule({
declarations: [
- AppComponent
+ AppComponent,
+ MainPageComponent,
+ RecipeCardComponent
],
imports: [
BrowserModule