Install and configure ProofConvert in 2 minutes
Install the ProofConvert React package:
1npm install @proofconvert/reactWrap your app with ProofConvertProvider in your main layout file:
1// app/layout.tsx or src/App.tsx
2import { ProofConvertProvider } from '@proofconvert/react';
3
4export default function Layout({ children }) {
5 return (
6 <ProofConvertProvider
7 projectId="proj_..."
8 apiKey="pcv_..."
9 >
10 {children}
11 </ProofConvertProvider>
12 );
13}Before using ProofConvert in your code, create a trigger in your Dashboard: