wip
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
'use client';
|
||||
|
||||
import React from 'react';
|
||||
|
||||
interface BarChartProps {
|
||||
@@ -5,7 +7,7 @@ interface BarChartProps {
|
||||
maxValue: number;
|
||||
}
|
||||
|
||||
export default function HorizontalBarChart({ data, maxValue }: BarChartProps) {
|
||||
export function HorizontalBarChart({ data, maxValue }: BarChartProps) {
|
||||
return (
|
||||
<div className="space-y-3">
|
||||
{data.map((item) => (
|
||||
|
||||
Reference in New Issue
Block a user