summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/main-page
AgeCommit message (Collapse)Author
2019-12-07Delete main page component that was no longer neededJacob
2019-12-07import { Component } from '@angular/core';chrisundercofferJacob
@Component({ selector: 'my-app', templateUrl: './app.component.html', styleUrls: [ './app.component.css' ] }) export class AppComponent { name = 'Angular'; addPage() { //Code here to move to add page } submitSearch() { //Code here to submit search } shoppingCart() { //Code here to move to shopping cart } } Updated main page to include just the top navigation
2019-12-07Added new recipe card and main page components. Added new files in eachJacob
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.