iqeats/components/SuggestionCard.tsx
2021-08-11 01:17:58 -05:00

27 lines
No EOL
394 B
TypeScript

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;