diff --git a/src/app/insights/components/BarGraph.tsx b/src/app/insights/components/BarGraph.tsx new file mode 100644 index 00000000..62fb7ce2 --- /dev/null +++ b/src/app/insights/components/BarGraph.tsx @@ -0,0 +1,35 @@ + + +interface BarGraphProps { + data: { name: string; value: number }[]; + } + + + + +export default function BarGraph({ data }: BarGraphProps) { + return ( +
Summary of needs selected as unmet
+