;
+
+ beforeEach(async () => {
+ await TestBed.configureTestingModule({
+ declarations: [ CreateCommitteeComponent ]
+ })
+ .compileComponents();
+ });
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(CreateCommitteeComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/src/app/create-committee/create-committee.component.ts b/src/app/create-committee/create-committee.component.ts
new file mode 100644
index 0000000..80530fb
--- /dev/null
+++ b/src/app/create-committee/create-committee.component.ts
@@ -0,0 +1,58 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+ selector: 'app-create-committee',
+ templateUrl: './create-committee.component.html',
+ styleUrls: ['./create-committee.component.scss']
+})
+export class CreateCommitteeComponent implements OnInit {
+
+
+ committees: Array<{
+ name: string;
+ designation: string
+ isActive: boolean,
+ }> = [{
+ name: "Robert Jr",
+ designation: 'Engineer',
+ isActive: false
+ }, {
+ name: "Tom Holland",
+ designation: 'Investigator',
+ isActive: false
+ }, {
+ name: "Criss Evans",
+ designation: 'Engineer',
+ isActive: false
+ }, {
+ name: "Natalie Portman",
+ designation: 'Engineer',
+ isActive: false
+ }, {
+ name: "Mark Ruffalo",
+ designation: 'Investigator',
+ isActive: false
+ }, {
+ name: "Paul Rudd",
+ designation: 'Engineer',
+ isActive: false
+ }, {
+ name: "Josh Brolin",
+ designation: 'Engineer',
+ isActive: false
+ }, {
+ name: "Criss Pratt",
+ designation: 'Investigator',
+ isActive: false
+ }, {
+ name: "Sacrlett Johansson",
+ designation: 'Engineer',
+ isActive: false
+ }]
+
+ constructor() { }
+
+ ngOnInit(): void {
+ }
+
+}
diff --git a/src/app/tabs/tabs.component.html b/src/app/tabs/tabs.component.html
index 8c5e43e..811305b 100644
--- a/src/app/tabs/tabs.component.html
+++ b/src/app/tabs/tabs.component.html
@@ -6,6 +6,9 @@
+
diff --git a/src/assets/images/Investigator.jpg b/src/assets/images/Investigator.jpg
new file mode 100644
index 0000000..9e03b8b
Binary files /dev/null and b/src/assets/images/Investigator.jpg differ