I am following the Stripe documentation for embedding a pricing table at link, but run into this error: "Property 'stripe-pricing-table' does not exist on type 'JSX.IntrinsicElements'".
Here is my code:
import React from 'react';
export default function PricingTable() {
return (
<stripe-pricing-table
pricing-table-id="prctbl_xxxxx"
publishable-key="pk_test_xxxxx"
></stripe-pricing-table>
);
}