19 lines
365 B
TypeScript
19 lines
365 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FuseCardComponent } from '@fuse/components/card/card.component';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
FuseCardComponent
|
|
],
|
|
imports : [
|
|
CommonModule
|
|
],
|
|
exports : [
|
|
FuseCardComponent
|
|
]
|
|
})
|
|
export class FuseCardModule
|
|
{
|
|
}
|