Resources
-Here are some links to help you get started:
- - - - -Next Steps
-What do you want to do next with your app?
- - - -ng generate component xyz-
ng add @angular/material-
ng add @angular/pwa-
ng add _____-
ng test-
ng build --prod-
diff --git a/angular.json b/angular.json index a5288fa..3ba5a39 100644 --- a/angular.json +++ b/angular.json @@ -28,6 +28,7 @@ "src/assets" ], "styles": [ + "node_modules/bootstrap/dist/css/bootstrap.css", "src/styles.scss" ], "scripts": [] diff --git a/package-lock.json b/package-lock.json index 11085ca..25737ce 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2671,6 +2671,11 @@ "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", "dev": true }, + "bootstrap": { + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.5.3.tgz", + "integrity": "sha512-o9ppKQioXGqhw8Z7mah6KdTYpNQY//tipnkxppWhPbiSWdD+1raYsnhwEZjkTHYbGee4cVQ0Rx65EhOY/HNLcQ==" + }, "brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", diff --git a/package.json b/package.json index c9516e3..4294002 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,8 @@ "@angular/platform-browser": "~10.2.0", "@angular/platform-browser-dynamic": "~10.2.0", "@angular/router": "~10.2.0", - "rxjs": "~6.6.0", + "bootstrap": "^4.5.3", + "rxjs": "^6.6.3", "tslib": "^2.0.0", "zone.js": "~0.10.2" }, diff --git a/src/app/app.component.html b/src/app/app.component.html index e48d8c1..3ce6f05 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -1,534 +1,4 @@ - - - - - - - - - - - -
- -Here are some links to help you get started:
- - - - -What do you want to do next with your app?
- - - -ng generate component xyz-
ng add @angular/material-
ng add @angular/pwa-
ng add _____-
ng test-
ng build --prod-
nav-bar works!
diff --git a/src/app/nav-bar/nav-bar.component.scss b/src/app/nav-bar/nav-bar.component.scss new file mode 100644 index 0000000..e69de29 diff --git a/src/app/nav-bar/nav-bar.component.spec.ts b/src/app/nav-bar/nav-bar.component.spec.ts new file mode 100644 index 0000000..94e5b30 --- /dev/null +++ b/src/app/nav-bar/nav-bar.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { NavBarComponent } from './nav-bar.component'; + +describe('NavBarComponent', () => { + let component: NavBarComponent; + let fixture: ComponentFixture