)
+}
\ No newline at end of file
diff --git a/src/components/Heading/index.jsx b/src/components/Heading/index.jsx
new file mode 100644
index 0000000..332eb12
--- /dev/null
+++ b/src/components/Heading/index.jsx
@@ -0,0 +1,3 @@
+export default function Heading({children}) {
+ return
{children}
+}
\ No newline at end of file
diff --git a/src/components/ProductItems/index.jsx b/src/components/ProductItems/index.jsx
new file mode 100644
index 0000000..f0e57cc
--- /dev/null
+++ b/src/components/ProductItems/index.jsx
@@ -0,0 +1,8 @@
+export default function ProductItems({onItemClick, productList}) {
+ return (
{productList.map((item) => {return
+
+
+
+
+
})}
)
+}
\ No newline at end of file
diff --git a/src/components/YourCart/index.jsx b/src/components/YourCart/index.jsx
new file mode 100644
index 0000000..53ec910
--- /dev/null
+++ b/src/components/YourCart/index.jsx
@@ -0,0 +1,3 @@
+export default function YourCart({cartList, onCartUpdate, children}) {
+ return {children}
+}
\ No newline at end of file
diff --git a/src/components/YourItems/index.jsx b/src/components/YourItems/index.jsx
new file mode 100644
index 0000000..00556a8
--- /dev/null
+++ b/src/components/YourItems/index.jsx
@@ -0,0 +1,3 @@
+export default function YourItems({productList, onItemClick, children}) {
+ return {children}
+}
\ No newline at end of file