Init project.

This commit is contained in:
2025-10-29 12:48:51 +08:00
commit 9ab89eefd9
47 changed files with 1408 additions and 0 deletions

View File

@ -0,0 +1,10 @@
import { NgModule } from '@angular/core';
import { SharedModule } from '../shared/shared.module';
import { HomeRoutingModule } from './home-routing.module';
import { HomeComponent } from './home.component';
@NgModule({
declarations: [HomeComponent],
imports: [SharedModule, HomeRoutingModule],
})
export class HomeModule {}