+ 1 Unrounded frozen reference: ${annualReference.toFixed(2)}. +
+ ) : null} + +-
+ {note.data.map((entry) => (
+
-
+
{entry.label} +
+ ))}
+
+ {NOTES_INTRO} +
+ > + ); + + return ( +{content}
; +} + +export function NoteArticle({ + note, + titleLevel, + linkTitle = false, +}: { + note: PolicyBenchNote; + titleLevel: "h1" | "h2"; + linkTitle?: boolean; +}) { + const Title = titleLevel; + const title = linkTitle ? ( + + {note.title} + + ) : ( + note.title + ); + const annualReference = note.facts.referenceAnnual; + const DataTitle = titleLevel === "h1" ? "h2" : "h3"; + + return ( ++ 1 Unrounded frozen reference: ${annualReference.toFixed(2)}. +
+ ) : null} + +