import { Pressable, StyleSheet, Text } from 'react-native' const Note = ({ note, setEdit }) => { const formatDate = d => d.replace('T',' ').replace(/\..*Z/, '') return ( setEdit(note)} > {note.title} {`Created at: ${formatDate(note.created_at)}`} {`Updated at: ${formatDate(note.updated_at)}`} ) } const styles = StyleSheet.create({ note: { textAlign: 'left', padding: 15, width: '100%', backgroundColor: 'black', }, title: { color: 'white', fontSize: 18, }, dates: { color: '#bbb', fontSize: 10, }, }); export default Note