Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/app/app.html
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
<app-sw-planet-films></app-sw-planet-films>
<app-copilot-my-component></app-copilot-my-component>
3 changes: 2 additions & 1 deletion src/app/app.ts
Original file line number Diff line number Diff line change
@@ -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',
})
Expand Down
Empty file.
8 changes: 8 additions & 0 deletions src/app/copilot-my-component/copilot-my-component.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<h1>Future Star Wars Planets</h1>
<ul>
<li>Coruscant</li>
<li>Mandalore</li>
<li>Naboo</li>
<li>Kamino</li>
<li>Mustafar</li>
</ul>
9 changes: 9 additions & 0 deletions src/app/copilot-my-component/copilot-my-component.ts
Original file line number Diff line number Diff line change
@@ -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 {}