add family
This commit is contained in:
@@ -29,6 +29,9 @@ ionic generate component fastreward
|
||||
ionic generate component familypending
|
||||
ionic generate component job-group
|
||||
|
||||
ionic generate component familiy-dash
|
||||
|
||||
|
||||
|
||||
ionic generate component InterestCard
|
||||
ionic generate component PendingSuggested
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
<div>
|
||||
<app-familiy-nokids></app-familiy-nokids>
|
||||
<app-familiy-notask></app-familiy-notask>
|
||||
<app-familiy-addfamily></app-familiy-addfamily>
|
||||
</div>
|
||||
@@ -0,0 +1,25 @@
|
||||
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
||||
import { IonicModule } from '@ionic/angular';
|
||||
|
||||
import { FamiliyDashComponent } from './familiy-dash.component';
|
||||
//import { FamiliyNokidsComponent } from '../familycards/familiy-nokids/familiy-nokids.component';
|
||||
|
||||
describe('FamiliyDashComponent', () => {
|
||||
let component: FamiliyDashComponent;
|
||||
let fixture: ComponentFixture<FamiliyDashComponent>;
|
||||
|
||||
beforeEach(waitForAsync(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [ FamiliyDashComponent ],
|
||||
imports: [IonicModule.forRoot()]
|
||||
}).compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(FamiliyDashComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
}));
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,14 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-familiy-dash',
|
||||
templateUrl: './familiy-dash.component.html',
|
||||
styleUrls: ['./familiy-dash.component.scss'],
|
||||
})
|
||||
export class FamiliyDashComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit() {}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
<p>
|
||||
familiy-addfamily works!
|
||||
</p>
|
||||
@@ -0,0 +1,24 @@
|
||||
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
||||
import { IonicModule } from '@ionic/angular';
|
||||
|
||||
import { FamiliyAddfamilyComponent } from './familiy-addfamily.component';
|
||||
|
||||
describe('FamiliyAddfamilyComponent', () => {
|
||||
let component: FamiliyAddfamilyComponent;
|
||||
let fixture: ComponentFixture<FamiliyAddfamilyComponent>;
|
||||
|
||||
beforeEach(waitForAsync(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [ FamiliyAddfamilyComponent ],
|
||||
imports: [IonicModule.forRoot()]
|
||||
}).compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(FamiliyAddfamilyComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
}));
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,14 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-familiy-addfamily',
|
||||
templateUrl: './familiy-addfamily.component.html',
|
||||
styleUrls: ['./familiy-addfamily.component.scss'],
|
||||
})
|
||||
export class FamiliyAddfamilyComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit() {}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
<p>
|
||||
familiy-nokids works!
|
||||
</p>
|
||||
@@ -0,0 +1,24 @@
|
||||
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
||||
import { IonicModule } from '@ionic/angular';
|
||||
|
||||
import { FamiliyNokidsComponent } from './familiy-nokids.component';
|
||||
|
||||
describe('FamiliyNokidsComponent', () => {
|
||||
let component: FamiliyNokidsComponent;
|
||||
let fixture: ComponentFixture<FamiliyNokidsComponent>;
|
||||
|
||||
beforeEach(waitForAsync(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [ FamiliyNokidsComponent ],
|
||||
imports: [IonicModule.forRoot()]
|
||||
}).compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(FamiliyNokidsComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
}));
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,14 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-familiy-nokids',
|
||||
templateUrl: './familiy-nokids.component.html',
|
||||
styleUrls: ['./familiy-nokids.component.scss'],
|
||||
})
|
||||
export class FamiliyNokidsComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit() {}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
<p>
|
||||
familiy-notask works!
|
||||
</p>
|
||||
@@ -0,0 +1,24 @@
|
||||
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
||||
import { IonicModule } from '@ionic/angular';
|
||||
|
||||
import { FamiliyNotaskComponent } from './familiy-notask.component';
|
||||
|
||||
describe('FamiliyNotaskComponent', () => {
|
||||
let component: FamiliyNotaskComponent;
|
||||
let fixture: ComponentFixture<FamiliyNotaskComponent>;
|
||||
|
||||
beforeEach(waitForAsync(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [ FamiliyNotaskComponent ],
|
||||
imports: [IonicModule.forRoot()]
|
||||
}).compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(FamiliyNotaskComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
}));
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,14 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-familiy-notask',
|
||||
templateUrl: './familiy-notask.component.html',
|
||||
styleUrls: ['./familiy-notask.component.scss'],
|
||||
})
|
||||
export class FamiliyNotaskComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit() {}
|
||||
|
||||
}
|
||||
@@ -14,6 +14,10 @@ import { FastrewardComponent } from "../../components/fastreward/fastreward.comp
|
||||
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
||||
import {LatestMarketComponent} from "../../components/latest-market/latest-market.component";
|
||||
import {HelpListingComponent} from "../../components/help-listing/help-listing.component";
|
||||
import {FamiliyDashComponent} from "../../components/familiy-dash/familiy-dash.component";
|
||||
import { FamiliyNokidsComponent } from '../../components/familycards/familiy-nokids/familiy-nokids.component';
|
||||
import {FamiliyNotaskComponent} from "../../components/familycards/familiy-notask/familiy-notask.component";
|
||||
import {FamiliyAddfamilyComponent} from "../../components/familycards/familiy-addfamily/familiy-addfamily.component";
|
||||
|
||||
// @NgModule({
|
||||
// schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
||||
@@ -26,7 +30,13 @@ import {HelpListingComponent} from "../../components/help-listing/help-listing.c
|
||||
IonicModule,
|
||||
HomePageRoutingModule
|
||||
],
|
||||
declarations: [HomePage,SuggestedlistComponent,FamilypendingComponent,TrackingComponent,FastrewardComponent,LatestMarketComponent,HelpListingComponent],
|
||||
declarations: [
|
||||
HomePage,SuggestedlistComponent,FamilypendingComponent,
|
||||
TrackingComponent,FastrewardComponent,
|
||||
LatestMarketComponent,HelpListingComponent,
|
||||
FamiliyDashComponent,FamiliyNokidsComponent,
|
||||
FamiliyNotaskComponent,FamiliyAddfamilyComponent
|
||||
],
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
||||
})
|
||||
export class HomePageModule { }
|
||||
|
||||
@@ -71,6 +71,7 @@
|
||||
</ion-buttons>
|
||||
<!-- <ion-title>{{walletDescription}}</ion-title>-->
|
||||
</ion-toolbar>
|
||||
<app-familiy-dash></app-familiy-dash>
|
||||
<app-latest-market></app-latest-market>
|
||||
<app-fastreward></app-fastreward>
|
||||
<!-- <app-tracking></app-tracking>-->
|
||||
|
||||
Reference in New Issue
Block a user