init starter package

This commit is contained in:
2025-10-16 17:29:57 +02:00
commit b7c67b5834
216 changed files with 37028 additions and 0 deletions
@@ -0,0 +1,12 @@
import { Badge } from "@medusajs/ui"
const PaymentTest = ({ className }: { className?: string }) => {
return (
<Badge color="orange" className={className}>
<span className="font-semibold">Attention:</span> For testing purposes
only.
</Badge>
)
}
export default PaymentTest