mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-05-09 02:51:46 +00:00
13 lines
374 B
TypeScript
13 lines
374 B
TypeScript
"use client";
|
|
|
|
import type { PaymentStatusData } from "@/lib/dashboard/payments/payment-status";
|
|
import { PaymentStatusWidgetView } from "./payment-status/payment-status-widget-view";
|
|
|
|
type PaymentStatusWidgetProps = {
|
|
data: PaymentStatusData;
|
|
};
|
|
|
|
export function PaymentStatusWidget({ data }: PaymentStatusWidgetProps) {
|
|
return <PaymentStatusWidgetView data={data} />;
|
|
}
|