20 lines
752 B
TypeScript
20 lines
752 B
TypeScript
import { FileUploadQueueComponent } from './file-upload-queue.component';
|
|
import { FloatActionButtonComponent } from './float-action-button.component';
|
|
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';
|
|
|
|
export const UI_COMMON_COMPONENTS = [
|
|
FileUploadQueueComponent,
|
|
FloatActionButtonComponent,
|
|
FileViewerComponent,
|
|
|
|
DocumentViewerComponent,
|
|
ImageViewerComponent,
|
|
SoundViewerComponent,
|
|
VideoViewerComponent
|
|
];
|