import {Image, StyleSheet, Text, View} from "react-native"; import {BadgeFilm} from "../screens/HomeScreen"; import * as React from "react"; type ListWidgetProps = { imageURL : string name : String } const styles = StyleSheet.create({ filmCard: { width: 70, height: 100, borderRadius: 8, }, }); export function ListWidget(props: ListWidgetProps) { return ( {props.name} {props.name} ); }