mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-29 03:23:11 +00:00
16 lines
296 B
TypeScript
16 lines
296 B
TypeScript
import { NgModule } from '@angular/core';
|
|
|
|
import { FuseHighlightComponent } from '@fuse/components/highlight/highlight.component';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
FuseHighlightComponent
|
|
],
|
|
exports: [
|
|
FuseHighlightComponent
|
|
],
|
|
})
|
|
export class FuseHighlightModule
|
|
{
|
|
}
|