add frontend ng
This commit is contained in:
parent
80d52ff819
commit
83ef7bab6c
18 changed files with 188 additions and 4 deletions
1
frontend/src/app/forms/edit-form/edit-form.html
Normal file
1
frontend/src/app/forms/edit-form/edit-form.html
Normal file
|
@ -0,0 +1 @@
|
|||
<p>edit-form works!</p>
|
0
frontend/src/app/forms/edit-form/edit-form.scss
Normal file
0
frontend/src/app/forms/edit-form/edit-form.scss
Normal file
23
frontend/src/app/forms/edit-form/edit-form.spec.ts
Normal file
23
frontend/src/app/forms/edit-form/edit-form.spec.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { EditForm } from './edit-form';
|
||||
|
||||
describe('EditForm', () => {
|
||||
let component: EditForm;
|
||||
let fixture: ComponentFixture<EditForm>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [EditForm]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(EditForm);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
11
frontend/src/app/forms/edit-form/edit-form.ts
Normal file
11
frontend/src/app/forms/edit-form/edit-form.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-edit-form',
|
||||
imports: [],
|
||||
templateUrl: './edit-form.html',
|
||||
styleUrl: './edit-form.scss'
|
||||
})
|
||||
export class EditForm {
|
||||
|
||||
}
|
1
frontend/src/app/forms/osm/osm.html
Normal file
1
frontend/src/app/forms/osm/osm.html
Normal file
|
@ -0,0 +1 @@
|
|||
<p>osm works!</p>
|
0
frontend/src/app/forms/osm/osm.scss
Normal file
0
frontend/src/app/forms/osm/osm.scss
Normal file
23
frontend/src/app/forms/osm/osm.spec.ts
Normal file
23
frontend/src/app/forms/osm/osm.spec.ts
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Osm } from './osm';
|
||||
|
||||
describe('Osm', () => {
|
||||
let component: Osm;
|
||||
let fixture: ComponentFixture<Osm>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Osm]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Osm);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
11
frontend/src/app/forms/osm/osm.ts
Normal file
11
frontend/src/app/forms/osm/osm.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Component } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-osm',
|
||||
imports: [],
|
||||
templateUrl: './osm.html',
|
||||
styleUrl: './osm.scss'
|
||||
})
|
||||
export class Osm {
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue