initialisation de l'application
This commit is contained in:
parent
b9f9f5fb3f
commit
6f9112ee91
118 changed files with 1221 additions and 492 deletions
1
src/app/components/meteo/meteo.component.html
Normal file
1
src/app/components/meteo/meteo.component.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
<p>meteo works!</p>
|
||||
0
src/app/components/meteo/meteo.component.scss
Normal file
0
src/app/components/meteo/meteo.component.scss
Normal file
25
src/app/components/meteo/meteo.component.spec.ts
Normal file
25
src/app/components/meteo/meteo.component.spec.ts
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { MeteoComponent } from './meteo.component';
|
||||
|
||||
describe('MeteoComponent', () => {
|
||||
let component: MeteoComponent;
|
||||
let fixture: ComponentFixture<MeteoComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
declarations: [ MeteoComponent ]
|
||||
})
|
||||
.compileComponents();
|
||||
});
|
||||
|
||||
beforeEach(() => {
|
||||
fixture = TestBed.createComponent(MeteoComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
15
src/app/components/meteo/meteo.component.ts
Normal file
15
src/app/components/meteo/meteo.component.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-meteo',
|
||||
templateUrl: './meteo.component.html',
|
||||
styleUrls: ['./meteo.component.scss']
|
||||
})
|
||||
export class MeteoComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit(): void {
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue