diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2017-07-19 00:50:05 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2017-07-19 00:50:05 +0200 |
| commit | 64e8c03dea044752bf3f2f228462721fe565f950 (patch) | |
| tree | 41b48b67f69979bfc97be166129ee41c8dcb0c7f /client/components/UI/AudioPlayerView.jsx | |
| parent | 11a70bc347587219b2ec7b63cf4a6ff69bb4199b (diff) | |
refactor all the worker stuff
Diffstat (limited to 'client/components/UI/AudioPlayerView.jsx')
| -rw-r--r-- | client/components/UI/AudioPlayerView.jsx | 4 |
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> ) |
