You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
563 B
27 lines
563 B
import {Image, View} from "react-native";
|
|
import * as React from "react";
|
|
|
|
export function SuggestedCard() {
|
|
|
|
|
|
return (
|
|
<View>
|
|
<Image style={{height: 28, width: 152, marginVertical: 5}}
|
|
source={require('../assets/images/suggested_card.png')}
|
|
/>
|
|
</View>
|
|
|
|
);
|
|
}
|
|
|
|
export function NewCard() {
|
|
|
|
|
|
return (
|
|
<View>
|
|
<Image style={{height: 28, width: 99, marginVertical: 5}}
|
|
source={require('../assets/images/new_card.png')}
|
|
/>
|
|
</View>
|
|
);
|
|
} |