+
+

+
+
+
{title}
+
{singer}
+
${price}
+
+
+
+
+
+
+
+
+
+ {amount}
+
+
+
+
+
+ );
+};
+
+export default CartItem;
\ No newline at end of file
diff --git a/mission/chapter09/mission_1/src/components/Navbar.tsx b/mission/chapter09/mission_1/src/components/Navbar.tsx
new file mode 100644
index 00000000..230ef633
--- /dev/null
+++ b/mission/chapter09/mission_1/src/components/Navbar.tsx
@@ -0,0 +1,21 @@
+import { useSelector } from 'react-redux';
+import type { RootState } from '../store/store';
+
+const Navbar = () => {
+ const { amount } = useSelector((state: RootState) => state.cart);
+
+ return (
+