File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
1쇄 소스코드(React Native 0.60.0)/ch8_MovieApp/src/Screens/MovieHome
ch8_MovieApp/src/Screens/MovieHome Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import AsyncStorage from '@react-native-community/async-storage';
3
3
import { NavigationScreenProp , NavigationState } from 'react-navigation' ;
4
4
import Styled from 'styled-components/native' ;
5
5
6
- import BitCatalogList from './BigCatalogList' ;
6
+ import BigCatalogList from './BigCatalogList' ;
7
7
import SubCatalogList from './SubCatalogList' ;
8
8
9
9
const Container = Styled . ScrollView `
@@ -35,7 +35,7 @@ const MovieHome = ({ navigation }: Props) => {
35
35
36
36
return (
37
37
< Container >
38
- < BitCatalogList
38
+ < BigCatalogList
39
39
url = "https://yts.lt/api/v2/list_movies.json?sort_by=like_count& order_by = desc & limit = 5 "
40
40
onPress = { ( id : number ) => {
41
41
navigation . navigate ( 'MovieDetail' , {
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import Styled from 'styled-components/native';
5
5
6
6
import { UserContext } from '~/Context/User' ;
7
7
8
- import BitCatalogList from './BigCatalogList' ;
8
+ import BigCatalogList from './BigCatalogList' ;
9
9
import SubCatalogList from './SubCatalogList' ;
10
10
11
11
const Container = Styled . ScrollView `
@@ -46,7 +46,7 @@ const MovieHome = ({navigation}: Props) => {
46
46
47
47
return (
48
48
< Container >
49
- < BitCatalogList
49
+ < BigCatalogList
50
50
url = "https://yts.lt/api/v2/list_movies.json?sort_by=like_count& order_by = desc & limit = 5 "
51
51
onPress = { ( id : number ) => {
52
52
navigation . navigate ( 'MovieDetail' , {
You can’t perform that action at this time.
0 commit comments