first commit

This commit is contained in:
2024-04-19 12:53:45 +07:00
commit 71a3a661dc
1943 changed files with 246917 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { MatchHeightModule } from '../../../partials/general/match-height/match-height.module';
import { CardComponent } from './card.component';
import { CardDirective } from 'src/app/_directives/card.directive';
@NgModule({
imports: [
CommonModule,
MatchHeightModule
],
declarations: [CardComponent, CardDirective],
exports: [CardComponent]
})
export class CardModule { }