import { useCurrentOrg } from "./data/organizations/orgs-query";
import { UsageView } from "./usage/UsageView";
function Usage() {
const org = useCurrentOrg().data;
if (!org) {
return <></>;
}
return <UsageView attributionId={{ kind: "team", teamId: org.id }} />;
}
export default Usage;