File size: 772 Bytes
1187856 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | interface TelemetryChannel {
label: string;
value: string;
note: string;
}
export function TelemetryQueue({
sectionNumber,
title,
description,
channels,
}: {
sectionNumber: string;
title: string;
description: string;
channels: TelemetryChannel[];
}) {
return (
<section id="telemetry-queue" className="section telemetry-queue">
<div className="section-head">
<span>{sectionNumber}</span>
<h2>{title}</h2>
</div>
<p>{description}</p>
<div className="queue-board">
{channels.map((ch) => (
<article key={ch.label}>
<b>{ch.label}</b>
<strong>{ch.value}</strong>
<span>{ch.note}</span>
</article>
))}
</div>
</section>
);
}
|