mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-03 07:01:38 +00:00
19 lines
395 B
TypeScript
19 lines
395 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FuseHighlightComponent } from '@fuse/components/highlight/highlight.component';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
FuseHighlightComponent
|
|
],
|
|
imports : [
|
|
CommonModule
|
|
],
|
|
exports : [
|
|
FuseHighlightComponent
|
|
]
|
|
})
|
|
export class FuseHighlightModule
|
|
{
|
|
}
|