commit new "Coup de Coeur" and "Nouveau" card displayed on the Swipeable card link with our new API 🎉🎉
parent
3892598991
commit
16fd168c8b
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 3.8 KiB |
@ -0,0 +1,27 @@
|
||||
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>
|
||||
);
|
||||
}
|
Loading…
Reference in new issue