19 lines
465 B
TypeScript
19 lines
465 B
TypeScript
import {NgModule} from '@angular/core';
|
|
import {CommonModule} from '@angular/common';
|
|
import {SongTextComponent} from './song-text.component';
|
|
import {FontAwesomeModule} from '@fortawesome/angular-fontawesome';
|
|
import {MatButtonModule} from '@angular/material/button';
|
|
|
|
|
|
@NgModule({
|
|
declarations: [SongTextComponent],
|
|
exports: [SongTextComponent],
|
|
imports: [
|
|
CommonModule,
|
|
FontAwesomeModule,
|
|
MatButtonModule
|
|
]
|
|
})
|
|
export class SongTextModule {
|
|
}
|