Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-12-07 | Delete main page component that was no longer needed | Jacob | |
2019-12-07 | import { Component } from '@angular/core';chrisundercoffer | Jacob | |
@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-07 | Added new recipe card and main page components. Added new files in each | Jacob | |
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. |