refactor of if else to tenary for simplicity

This commit is contained in:
ajaezokingsley 2021-10-22 14:30:54 -07:00
parent 6465bdc7ef
commit ad9e125e24

View File

@ -5,14 +5,13 @@ import './index.css';
function Router() {
const { streamData } = useMovie();
if (streamData) return <MovieView />;
else return <SearchView />;
return streamData ? <MovieView /> : <SearchView />;
}
function App() {
return (
<MovieProvider>
<Router/>
<Router />
</MovieProvider>
);
}