1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2024-12-21 14:47:41 +01:00
smov/src/App.js

21 lines
413 B
JavaScript
Raw Normal View History

2021-07-14 00:31:37 +02:00
import './index.css';
import { SearchView } from './views/Search';
import { MovieView } from './views/Movie';
import { useMovie, MovieProvider} from './hooks/useMovie';
function Router() {
2021-08-02 14:15:18 +02:00
const { streamData } = useMovie();
if (streamData) return <MovieView />;
else return <SearchView />;
2021-07-14 00:31:37 +02:00
}
function App() {
return (
<MovieProvider>
<Router/>
</MovieProvider>
);
}
export default App;