Began QR code function. Continue it tomorrow...

This commit is contained in:
2026-05-31 19:20:21 +02:00
parent f1a10b0791
commit ecfb309dab
6 changed files with 378 additions and 5 deletions
+9
View File
@@ -0,0 +1,9 @@
export const ProductQuickView = () => {
const product = window.location.search.split("uuid=")[1];
return (
<>
<p>View</p>
</>
);
};