-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from Pedrolustosa/developer
feat: add Header and Footer components, and move Nav component to _sh…
- Loading branch information
Showing
13 changed files
with
42 additions
and
3 deletions.
There are no files selected for viewing
Empty file.
1 change: 1 addition & 0 deletions
1
Front/FinanceTracker.Client/src/app/_shared/footer/footer.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<p>footer works!</p> |
12 changes: 12 additions & 0 deletions
12
Front/FinanceTracker.Client/src/app/_shared/footer/footer.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-footer', | ||
standalone: true, | ||
imports: [], | ||
templateUrl: './footer.component.html', | ||
styleUrl: './footer.component.css' | ||
}) | ||
export class FooterComponent { | ||
|
||
} |
Empty file.
1 change: 1 addition & 0 deletions
1
Front/FinanceTracker.Client/src/app/_shared/header/header.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<p>header works!</p> |
12 changes: 12 additions & 0 deletions
12
Front/FinanceTracker.Client/src/app/_shared/header/header.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-header', | ||
standalone: true, | ||
imports: [], | ||
templateUrl: './header.component.html', | ||
styleUrl: './header.component.css' | ||
}) | ||
export class HeaderComponent { | ||
|
||
} |
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
...acker.Client/src/app/nav/nav.component.ts → ...ient/src/app/_shared/nav/nav.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
1 change: 1 addition & 0 deletions
1
Front/FinanceTracker.Client/src/app/dashboard/dashboard.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<p>dashboard works!</p> |
12 changes: 12 additions & 0 deletions
12
Front/FinanceTracker.Client/src/app/dashboard/dashboard.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { Component } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-dashboard', | ||
standalone: true, | ||
imports: [], | ||
templateUrl: './dashboard.component.html', | ||
styleUrl: './dashboard.component.css' | ||
}) | ||
export class DashboardComponent { | ||
|
||
} |