import {ReactNode} from 'react'; interface BillingPlanPanelProps { title: ReactNode; children: ReactNode; } export function BillingPlanPanel({title, children}: BillingPlanPanelProps) { return (
{title}
{children}
); }