AW-471 Farmmaps library (initial commit).
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
<p>
|
||||
cropfield-selector works!
|
||||
</p>
|
||||
@@ -0,0 +1,25 @@
|
||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { CropfieldSelectorComponent } from './cropfield-selector.component';
|
||||
|
||||
describe('CropfieldSelectorComponent', () => {
|
||||
let component: CropfieldSelectorComponent;
|
||||
let fixture: ComponentFixture<CropfieldSelectorComponent>;
|
||||
|
||||
beforeEach(async(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [ CropfieldSelectorComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
}));
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(CropfieldSelectorComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,15 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'farmmaps-cropfield-selector',
|
||||
templateUrl: './cropfield-selector.component.html',
|
||||
styleUrls: ['./cropfield-selector.component.css']
|
||||
})
|
||||
export class CropfieldSelectorComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit() {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user