19 lines
457 B
TypeScript
19 lines
457 B
TypeScript
import { View, StyleSheet, Text, Pressable } from "react-native";
|
|
|
|
|
|
export default function EnvironmentCard() {
|
|
return (
|
|
<Pressable onPress={() => console.log('Environment card pressed')} style={styles.container}>
|
|
<Text>I'm pressable!</Text>
|
|
</Pressable>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
backgroundColor: '#fff',
|
|
padding: 16,
|
|
margin: 8,
|
|
borderRadius: 8,
|
|
},
|
|
}); |