import React from "react"; const labels = ["Yes", "No"]; export default function AxisEvaluation({ axis, data, items, updateAxisItem }) { return (

{axis.title}

{axis.summary}

{axis.details && ( )}
{items.map((item) => { const itemData = data.items[item.id]; return (

{item.title}

{item.description}

{axis.id === "temporal_count" ? ( ) : (
{labels.map((label) => ( ))}
)}