summaryrefslogtreecommitdiff
path: root/animism-align/frontend/app/views/viewer/player/components.fullscreen/index.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-07-28 14:11:46 +0200
committerJules Laplace <julescarbon@gmail.com>2020-07-28 14:11:46 +0200
commit778380446d278adf45a9491b699b7e324d9edb8c (patch)
tree5668af71143a3c6da12d4801258af61c0a64ac89 /animism-align/frontend/app/views/viewer/player/components.fullscreen/index.js
parentc28213f28693b44bb7cf9c272b3406adc76b1e33 (diff)
setting things as hidden
Diffstat (limited to 'animism-align/frontend/app/views/viewer/player/components.fullscreen/index.js')
-rw-r--r--animism-align/frontend/app/views/viewer/player/components.fullscreen/index.js18
1 files changed, 9 insertions, 9 deletions
diff --git a/animism-align/frontend/app/views/viewer/player/components.fullscreen/index.js b/animism-align/frontend/app/views/viewer/player/components.fullscreen/index.js
index 3befbde..f533123 100644
--- a/animism-align/frontend/app/views/viewer/player/components.fullscreen/index.js
+++ b/animism-align/frontend/app/views/viewer/player/components.fullscreen/index.js
@@ -1,19 +1,19 @@
import React from 'react'
-// import {
-// MediaVideo
-// } from './fullscreen.video'
-
import {
- Image
+ FullscreenImage
} from './fullscreen.image'
import {
- Curtain
+ FullscreenVideo
+} from './fullscreen.video'
+
+import {
+ FullscreenCurtain
} from './fullscreen.utility'
export const fullscreenComponents = {
- curtain: React.memo(Curtain),
- // video: React.memo(MediaVideo),
- image: React.memo(Image),
+ curtain: React.memo(FullscreenCurtain),
+ video: React.memo(FullscreenVideo),
+ image: React.memo(FullscreenImage),
}