2019-10-30 18:18:35 +09:00
|
|
|
import { FileUploadQueueComponent } from './file-upload-queue.component';
|
|
|
|
import { FloatActionButtonComponent } from './float-action-button.component';
|
2019-11-06 13:48:06 +09:00
|
|
|
import { FileViewerComponent } from './file-viewer.component';
|
|
|
|
|
|
|
|
import { DocumentViewerComponent } from './file-viewer/document-viewer.component';
|
|
|
|
import { ImageViewerComponent } from './file-viewer/image-viewer.component';
|
|
|
|
import { SoundViewerComponent } from './file-viewer/sound-viewer.component';
|
|
|
|
import { VideoViewerComponent } from './file-viewer/video-viewer.component';
|
2019-10-30 18:18:35 +09:00
|
|
|
|
|
|
|
export const UI_COMMON_COMPONENTS = [
|
|
|
|
FileUploadQueueComponent,
|
2019-11-06 13:48:06 +09:00
|
|
|
FloatActionButtonComponent,
|
|
|
|
FileViewerComponent,
|
|
|
|
|
|
|
|
DocumentViewerComponent,
|
|
|
|
ImageViewerComponent,
|
|
|
|
SoundViewerComponent,
|
|
|
|
VideoViewerComponent
|
2019-10-30 18:18:35 +09:00
|
|
|
];
|