export default function Block({ value, label }) { return (
{value === undefined || value === null ? "-" : value}
{label}
); }