summaryrefslogtreecommitdiff
path: root/client/components/UI/AudioPlayerView.jsx
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2017-07-19 00:50:05 +0200
committerJules Laplace <julescarbon@gmail.com>2017-07-19 00:50:05 +0200
commit64e8c03dea044752bf3f2f228462721fe565f950 (patch)
tree41b48b67f69979bfc97be166129ee41c8dcb0c7f /client/components/UI/AudioPlayerView.jsx
parent11a70bc347587219b2ec7b63cf4a6ff69bb4199b (diff)
refactor all the worker stuff
Diffstat (limited to 'client/components/UI/AudioPlayerView.jsx')
-rw-r--r--client/components/UI/AudioPlayerView.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/components/UI/AudioPlayerView.jsx b/client/components/UI/AudioPlayerView.jsx
index 62745ed..d2c9982 100644
--- a/client/components/UI/AudioPlayerView.jsx
+++ b/client/components/UI/AudioPlayerView.jsx
@@ -8,14 +8,14 @@ export default function AudioPlayerView (props) {
audio.src = mp3path(props.file)
audio.play()
return (
- <div>
+ <div class='audioPlayer'>
Playing {props.file.name}
</div>
)
}
else {
return (
- <div>
+ <div class='audioPlayer'>
Not Playing
</div>
)