diff --git a/src/App.js b/src/App.js index fe7edea6..c3284bde 100644 --- a/src/App.js +++ b/src/App.js @@ -1,7 +1,7 @@ -import './index.css'; import { SearchView } from './views/Search'; import { MovieView } from './views/Movie'; -import { useMovie, MovieProvider} from './hooks/useMovie'; +import { useMovie, MovieProvider } from './hooks/useMovie'; +import './index.css'; function Router() { const { streamData } = useMovie(); diff --git a/src/components/Cross.css b/src/components/Cross.css deleted file mode 100644 index d4ef70b1..00000000 --- a/src/components/Cross.css +++ /dev/null @@ -1,7 +0,0 @@ -.cross { - display: inline-block; -} - -.cross:hover { - transform: rotate(45deg); -} \ No newline at end of file diff --git a/src/components/Cross.js b/src/components/Cross.js deleted file mode 100644 index eb2ae21b..00000000 --- a/src/components/Cross.js +++ /dev/null @@ -1,14 +0,0 @@ -import React from 'react' -import './Cross.css' - -export function Cross(props) { - return ( - - - - `}}> - - ) -} diff --git a/src/components/Progress.js b/src/components/Progress.js index 05af5c4c..38e7d6c1 100644 --- a/src/components/Progress.js +++ b/src/components/Progress.js @@ -8,7 +8,7 @@ import './Progress.css' // failed: boolean export function Progress(props) { return ( -
+
{ props.text && props.text.length > 0 ? (

{props.text}

) : null}
diff --git a/src/components/Title.js b/src/components/Title.js index 6d673ac2..b03f1aa8 100644 --- a/src/components/Title.js +++ b/src/components/Title.js @@ -14,6 +14,7 @@ export function Title(props) { const accentLink = props.accentLink || ""; const accent = props.accent || ""; + return (
{accent.length > 0 ? ( @@ -26,7 +27,7 @@ export function Title(props) { {accentLink.length > 0 ? () : null}{accent}

) : null} -

{props.children}

+

{props.children}

) } diff --git a/src/views/NotFound.js b/src/views/NotFound.js deleted file mode 100644 index 5b2f4aab..00000000 --- a/src/views/NotFound.js +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' -import { Title } from '../components/Title' -import { Card } from '../components/Card' - -export function NotFound(props) { - return ( -
- - - Oopsie doopsie - - -
- ) -}