feat: tailwind and header
This commit is contained in:
@@ -0,0 +1 @@
|
||||
<h1>It's home component</h1>
|
||||
11
apps/NwaifuAnime/src/app/components/home/home.component.ts
Normal file
11
apps/NwaifuAnime/src/app/components/home/home.component.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { CommonModule } from "@angular/common";
|
||||
import { Component } from "@angular/core";
|
||||
|
||||
@Component({
|
||||
standalone: true,
|
||||
selector: "app-home",
|
||||
templateUrl: "./home.component.html",
|
||||
styleUrls: ["./home.component.less"],
|
||||
imports: [CommonModule],
|
||||
})
|
||||
export class HomeComponent {}
|
||||
Reference in New Issue
Block a user