Book of claims
npm install book-claimsBook of claims
This component allows you to create a book of claims.
``bash`
npm i book-claims
`html`
product="DEFAULT"
/>
script
"use client"; #only in next
import { useEffect } from "react";const BookClaimsWrapper = () => {
useEffect(() => {
import("book-claims");
}, []);
return ;
};
export default BookClaimsWrapper;
``