(date: Date)
| 53 | }; |
| 54 | |
| 55 | const formatDate = (date: Date) => { |
| 56 | return new Intl.DateTimeFormat('en-GB', { |
| 57 | weekday: 'short', |
| 58 | day: '2-digit', |
| 59 | month: 'short', |
| 60 | }).format(date); |
| 61 | }; |
| 62 | |
| 63 | return ( |
| 64 | <> |
no outgoing calls
no test coverage detected