From cfe821d9a829aa0a144ae872dd2cfd31590ed3bf Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Tue, 20 Jul 2021 18:28:21 +0100 Subject: [PATCH] format --- src/components/VideoElement.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/VideoElement.js b/src/components/VideoElement.js index 9d26ff50..2f3863fc 100644 --- a/src/components/VideoElement.js +++ b/src/components/VideoElement.js @@ -1,8 +1,9 @@ import React from 'react' import Hls from 'hls.js' -import './VideoElement.css' import { VideoPlaceholder } from './VideoPlaceholder' +import './VideoElement.css' + // streamUrl: string // loading: boolean export function VideoElement({ streamUrl, loading, setProgress }) { @@ -44,7 +45,9 @@ export function VideoElement({ streamUrl, loading, setProgress }) { ) } else { return ( - + ) } }