'use client' import { createProductSKUs } from "lib/helpers/skus"; export function ProductSKUs(productInfo: {productTitle: string}) { const SKUs = createProductSKUs(productInfo.productTitle) function copyText(e) { navigator.clipboard.writeText(e.target.value); } return ( <>
{SKUs?.map(SKU => { return (
) })}
) };