import { Card } from "@/components/ui/card";
interface AccountCardProps {
params: {
header: string;
description: string;
price?: number;
};
children: React.ReactNode;
}
export function AccountCard({ params, children }: AccountCardProps) {
const { header, description } = params;
return (
{description}{header}