mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-11 01:25:05 +01:00
refactor of if else to tenary for simplicity
This commit is contained in:
parent
6465bdc7ef
commit
ad9e125e24
@ -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>
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user