file list

This commit is contained in:
Benjamin Ifland
2019-03-26 23:15:33 +01:00
parent 2377c0a722
commit 02d395b480
11 changed files with 129 additions and 11 deletions

View File

@@ -16,6 +16,7 @@ import { MatButtonModule } from '@angular/material/button';
import { MatChipsModule } from '@angular/material/chips';
import { MatRadioModule } from '@angular/material/radio';
import { MatSelectModule } from '@angular/material/select';
import { MatTooltipModule } from '@angular/material/tooltip';
import { TableComponent } from './components/songs/table/table.component';
import { SongsComponent } from './components/songs/songs.component';
@@ -23,9 +24,19 @@ import { SongComponent } from './components/songs/song/song.component';
import { SongEditComponent } from './components/songs/song-edit/song-edit.component';
import { SongNewComponent } from './components/songs/song-new/song-new.component';
import { SongFormComponent } from './components/songs/song-form/song-form.component';
import { SongFilesComponent } from './components/songs/song-files/song-files.component';
@NgModule({
declarations: [AppComponent, SongsComponent, TableComponent, SongComponent, SongEditComponent, SongNewComponent, SongFormComponent],
declarations: [
AppComponent,
SongsComponent,
TableComponent,
SongComponent,
SongEditComponent,
SongNewComponent,
SongFormComponent,
SongFilesComponent
],
imports: [
BrowserModule,
BrowserAnimationsModule,
@@ -42,6 +53,7 @@ import { SongFormComponent } from './components/songs/song-form/song-form.compon
MatChipsModule,
MatRadioModule,
MatSelectModule,
MatTooltipModule,
FontAwesomeModule
],