iqeats/components/SuggestionCard.tsx

27 lines
394 B
TypeScript
Raw Normal View History

2021-08-11 06:17:58 +00:00
import React from "react";
import styles from "../assets/styles";
import {
View,
Text,
} from "react-native";
const SuggestionCard = ({
actions,
description,
image,
matches,
name,
onPressLeft,
onPressRight,
status,
variant,
}) => {
return (
<View style={styles.suggestionsCard}>
<Text>NAME IS {name}</Text>
</View>
);
};
export default SuggestionCard;