+
+

+
+
{item.title}
+
{item.singer}
+
${item.price}
+
+
+
+
+
+
+ {item.amount}
+
+
+
+
+ )
+}
+
+export default CartItemRow
diff --git a/mission/chapter09-1/src/components/Footer.tsx b/mission/chapter09-1/src/components/Footer.tsx
new file mode 100644
index 00000000..756c9770
--- /dev/null
+++ b/mission/chapter09-1/src/components/Footer.tsx
@@ -0,0 +1,20 @@
+import { useAppSelector } from '../store/hooks'
+
+const Footer = () => {
+ const { amount, total } = useAppSelector((state) => state.cart)
+
+ return (
+