what would be the best way to change the time format from the long string 2023-01-31T18:15:23.413003Z to something more human readable like 31 Jan, 2023 and also change the time to something like 18:15:24 and not the whole string?
I already tried using the slice() method but how can i get the Name of the month and the number
<td>{object.time_date.slice(0, 10)}</td>