From 6ff7c459e3d08ebdf6da6973ebe0410b5cab9c0a Mon Sep 17 00:00:00 2001 From: Alberto-Duarte Date: Thu, 11 May 2023 11:40:35 +0100 Subject: first commit --- components/PreviewCard.tsx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 components/PreviewCard.tsx (limited to 'components/PreviewCard.tsx') diff --git a/components/PreviewCard.tsx b/components/PreviewCard.tsx new file mode 100644 index 0000000..989ec34 --- /dev/null +++ b/components/PreviewCard.tsx @@ -0,0 +1,20 @@ +const imageURL = 'https://image.tmdb.org/t/p/original'; +import { ImageBackground, View } from "react-native"; +const baseURL ='https://api.themoviedb.org/3/' +import tw from 'twrnc'; + +const PreviewCard = ({ movie }) => { + return ( + + + + + + )} + + +export default PreviewCard \ No newline at end of file -- cgit v1.2.3-54-g00ecf