diff --git a/src/App.js b/src/App.js index c3284bde..8e248937 100644 --- a/src/App.js +++ b/src/App.js @@ -5,14 +5,13 @@ import './index.css'; function Router() { const { streamData } = useMovie(); - if (streamData) return ; - else return ; + return streamData ? : ; } function App() { return ( - + ); }