File architecture and layout component init

This commit is contained in:
AdamBtech
2025-05-19 16:45:33 +02:00
parent 97d457f2b9
commit 98cc83148d
19 changed files with 75 additions and 0 deletions

View File

@@ -0,0 +1 @@
<p>project works!</p>

View File

@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-project',
imports: [],
templateUrl: './project.component.html',
styleUrl: './project.component.css'
})
export class ProjectComponent {
}

View File

@@ -0,0 +1 @@
<p>projects-list works!</p>

View File

@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-projects-list',
imports: [],
templateUrl: './projects-list.component.html',
styleUrl: './projects-list.component.css'
})
export class ProjectsListComponent {
}