From 91e11003f7361d110142e7b4b66d774a926b9d2c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 23 Oct 2025 20:26:44 +0000 Subject: [PATCH 1/2] Initial plan From 708796d36fcdcf75655f0f9b9a51c8d2e4f1b0d5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 23 Oct 2025 20:33:59 +0000 Subject: [PATCH 2/2] Add copilot-my-component with Future Star Wars Planets list Co-authored-by: tsteelematc <21085175+tsteelematc@users.noreply.github.com> --- src/app/app.html | 1 + src/app/app.ts | 3 ++- src/app/copilot-my-component/copilot-my-component.css | 0 src/app/copilot-my-component/copilot-my-component.html | 8 ++++++++ src/app/copilot-my-component/copilot-my-component.ts | 9 +++++++++ 5 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 src/app/copilot-my-component/copilot-my-component.css create mode 100644 src/app/copilot-my-component/copilot-my-component.html create mode 100644 src/app/copilot-my-component/copilot-my-component.ts diff --git a/src/app/app.html b/src/app/app.html index 3dd99b5..db22096 100644 --- a/src/app/app.html +++ b/src/app/app.html @@ -1 +1,2 @@ + diff --git a/src/app/app.ts b/src/app/app.ts index 5f5f986..bfc9055 100644 --- a/src/app/app.ts +++ b/src/app/app.ts @@ -1,9 +1,10 @@ import { Component, signal } from '@angular/core'; import { SwPlanetFilms } from './sw-planet-films/sw-planet-films'; +import { CopilotMyComponent } from './copilot-my-component/copilot-my-component'; @Component({ selector: 'app-root', - imports: [SwPlanetFilms], + imports: [SwPlanetFilms, CopilotMyComponent], templateUrl: './app.html', styleUrl: './app.css', }) diff --git a/src/app/copilot-my-component/copilot-my-component.css b/src/app/copilot-my-component/copilot-my-component.css new file mode 100644 index 0000000..e69de29 diff --git a/src/app/copilot-my-component/copilot-my-component.html b/src/app/copilot-my-component/copilot-my-component.html new file mode 100644 index 0000000..3661da0 --- /dev/null +++ b/src/app/copilot-my-component/copilot-my-component.html @@ -0,0 +1,8 @@ +

Future Star Wars Planets

+ diff --git a/src/app/copilot-my-component/copilot-my-component.ts b/src/app/copilot-my-component/copilot-my-component.ts new file mode 100644 index 0000000..e6128d3 --- /dev/null +++ b/src/app/copilot-my-component/copilot-my-component.ts @@ -0,0 +1,9 @@ +import { Component } from '@angular/core'; + +@Component({ + selector: 'app-copilot-my-component', + imports: [], + templateUrl: './copilot-my-component.html', + styleUrl: './copilot-my-component.css', +}) +export class CopilotMyComponent {}