import React from "react"; import { StyleSheet, View } from "react-native"; export default function Card(props){ return ( { props.childern } ) } const styles = StyleSheet.create({ card: { borderRadius: 6, elevation: 3, backgroundColor: '#fff', shadowOffset: { width: 1, height: 1}, shadowColor: '#333', shadowOpacity: 0.3, }, cardContent: { }, });