import { Card } from "react-daisyui"; import { ChartPie, ChartScatter } from "lucide-react"; import { readableBytes } from "@/lib/utils"; import WebsiteAccessSection from "./overview-website-access"; import AliasesSection from "./overview-aliases"; import QuotaSection from "./overview-quota"; import { useBucketContext } from "../context"; const OverviewTab = () => { const { bucket: data } = useBucketContext(); return (
Summary Usage

Storage

{readableBytes(data?.bytes)}

Objects

{data?.objects}

); }; export default OverviewTab;