mirror of
https://github.com/movie-web/movie-web.git
synced 2024-12-25 07:51:51 +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() {
|
function Router() {
|
||||||
const { streamData } = useMovie();
|
const { streamData } = useMovie();
|
||||||
if (streamData) return <MovieView />;
|
return streamData ? <MovieView /> : <SearchView />;
|
||||||
else return <SearchView />;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
return (
|
return (
|
||||||
<MovieProvider>
|
<MovieProvider>
|
||||||
<Router/>
|
<Router />
|
||||||
</MovieProvider>
|
</MovieProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user