diff --git a/Screens/CartScreen/Index.tsx b/Screens/CartScreen/Index.tsx index e79ed1e..0233956 100644 --- a/Screens/CartScreen/Index.tsx +++ b/Screens/CartScreen/Index.tsx @@ -1,8 +1,11 @@ -import { ScrollView, View, Text } from "react-native"; +import { ScrollView, View, Text, Image,Button } from "react-native"; import styles from "./Styles"; import PrimaryButton from "../../Components/PrimaryButton/PrimaryButton"; -function CartScreen() { + +const CartScreen = ({ route }: { route: any }) => { + const { title, price, image } = route.params; + return(