diff --git a/src/app/components/poi-list/poi-list.component.css b/src/app/components/poi-list/poi-list.component.css
new file mode 100644
index 0000000..e69de29
diff --git a/src/app/components/poi-list/poi-list.component.html b/src/app/components/poi-list/poi-list.component.html
new file mode 100644
index 0000000..ee895cb
--- /dev/null
+++ b/src/app/components/poi-list/poi-list.component.html
@@ -0,0 +1,82 @@
+
+
+
Liste des Points d'Intérêt
+
+
+
+
+
+
+
+
+ Titre |
+ Description |
+ Adresse |
+ Actions |
+
+
+
+
+ {{ poi.title }} |
+ {{ poi.description }} |
+ {{ poi.complete_address }} |
+
+
+
+ |
+
+
+
+
+
+
+
+
+
+
{{ isAdding ? 'Ajouter un POI' : 'Modifier le POI' }}
+
+
+
+
+
+
+
diff --git a/src/app/components/poi-list/poi-list.component.spec.ts b/src/app/components/poi-list/poi-list.component.spec.ts
new file mode 100644
index 0000000..d2e9eb6
--- /dev/null
+++ b/src/app/components/poi-list/poi-list.component.spec.ts
@@ -0,0 +1,23 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { PoiListComponent } from './poi-list.component';
+
+describe('PoiListComponent', () => {
+ let component: PoiListComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(async () => {
+ await TestBed.configureTestingModule({
+ imports: [PoiListComponent]
+ })
+ .compileComponents();
+
+ fixture = TestBed.createComponent(PoiListComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});