import dayjs from 'dayjs' import { LOGS_TAILWIND_CLASSES } from '../Logs.constants' import { jsonSyntaxHighlight, SeverityFormatter } from '../LogsFormatters' const FunctionLogsSelectionRender = ({ log }: any) => { const timestamp = dayjs(log.timestamp / 1000) const metadata = log.metadata[0] const DetailedRow = ({ label, value, code, }: { label: string value: string | React.ReactNode code?: boolean }) => { return (