mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-19 14:52:34 +00:00
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
|
|
{
|
|
}
|