import React from 'react'; import BarMeter from './shared/BarMeter'; import MetricCard from './shared/MetricCard'; import Compare from './shared/Compare'; import InsightBox from './shared/InsightBox'; import { influenceData as d } from '../data/dashboardData'; const colors = { blocker: '#E24B4A', public: '#185FA5' }; /** * Dashboard 4: One memo beat 240 residents * (Influence Radar) */ export default function WhoIsInCharge() { return (

{d.conclusion}

{/* Topic */}
Policy Decision
{d.topic}
{/* Influence Bars */}

Influence on Final Decision

{d.actors.map((item, i) => (
{item.contactName && `Contact: ${item.contactName}`}
))}
{/* Key Metrics */}
{/* Veto Holder Callout */}
Effective Veto Holder
{d.vetoHolder}
One liability memo had {d.actors.find(a => a.type === 'blocker').influence}% influence despite {d.publicComments}+ citizen testimonies
{/* Liability Benchmark */}

Successful Liability Suits in States with Screening Programs

Source: National Association of School Nurses, ADA Health Policy Institute

{/* The Logic */} {d.powerStructure}: {d.inference} {/* Question for the Room */}
Ask them:

"{d.vetoHolder}, can you please stand and explain to these {d.publicComments} citizens why your one memo expressing 'liability concerns' outweighed their collective voice? And can you cite a single successful lawsuit in any of the 35 states with active school dental screening programs?"

); }