création structure
This commit is contained in:
parent
73897ea5b4
commit
4bbf8906e8
21 changed files with 239 additions and 1 deletions
|
|
@ -0,0 +1 @@
|
|||
<p>formulaire works!</p>
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { FormulaireComponent } from './formulaire.component';
|
||||
|
||||
describe('FormulaireComponent', () => {
|
||||
let component: FormulaireComponent;
|
||||
let fixture: ComponentFixture<FormulaireComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ FormulaireComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(FormulaireComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-formulaire',
|
||||
templateUrl: './formulaire.component.html',
|
||||
styleUrls: ['./formulaire.component.scss']
|
||||
})
|
||||
export class FormulaireComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue