How to format this date Timestamp(seconds=1676238124, nanoseconds=838000000) in react native
Im fetching some data from firestore, the date fields are in the format of {seconds: XXXXX, nanoseconds: XXXXX}. React Native complains about this saying this format is not a serializable value so to those fields I do this: docData.createdAt.toLocaleString() That…