+
+
setBody(e.target.value)} placeholder="متن پیام..." />
+
+
+
+ {isLoading ? (
+
در حال بارگذاری...
+ ) : items.length === 0 ? (
+
پیامی ثبت نشده است.
+ ) : (
+
+ {items.map((m) => (
+
+
+
{m.body}
+
+ {CHANNEL_LABEL[m.channel] ?? m.channel}
+ {formatDate(m.created_at)}
+
+
+
+
+ ))}
+
+ )}
+
+ );
+}
+
function TabList({ q, emptyLabel, row }: {
q: { data?: ApiResponse