import React from 'react'; import { Text, View, StyleSheet } from 'react-native'; import dayjs from 'dayjs'; import type { IRenderDateProps } from 'src/types/Chatty.types'; function _RenderDate(props: IRenderDateProps) { const { date, containerStyle, labelStyle } = props; return ( {dayjs(date).format('dddd D MMM')} ); } const styles = StyleSheet.create({ container: { padding: 5, backgroundColor: '#ccc', alignSelf: 'center', borderRadius: 5, }, label: { color: '#fff', }, }); export const RenderDate = React.memo(_RenderDate);