Card


Last updated
Was this helpful?


Last updated
Was this helpful?
Was this helpful?
const AlarmDetail = (props) => {
return (
<Card>
<Text>{"Danny is handsome"}</Text>
</Card>
);
};
const Card = (props) => {
return (
<View style={styles.containerStyle}>{props.children}</View>
);
};