#zerosodium-pricing-table
1 messages · Page 1 of 1 (latest)
Not exactly. Pricing tables are meant to be embedded in a page you own so there's no direct link to a table
is there any links to pricing tables using react instead of a script tag?
Yep! See this section: https://stripe.com/docs/payments/checkout/pricing-table#embed
You'll want to toggle the code snippet at the end from "HTML" to "React"
thx
real quick: @pearl scaffold
I'm using vite and don't have an index.html file. suggestions?
I'm not familiar with Vite. Is there some equivalent to your "root" page?
I have a main.tsx file like so
const root = createRoot(document.getElementById("root")!)
root.render(
<Page>
<App />
</Page>
)```