"use client"; import makePayment from '../helpers/make-payment'; export default function PricingCard({ title, description, price, includedItems = [], notIncludedItems = [] }) { return (
{title}
$ {price} /month
); }