import { Card, CardContent, CardFooter, CardHeader, } from "@/styles/base-rhea/ui/card" import { Skeleton } from "@/styles/base-rhea/ui/skeleton" const bars = [30, 70, 80, 60, 90, 75, 100, 85] export function PowerUsage() { return (
{bars.map((height, i) => (
))}
) }