diff --git a/src/Checkout/Checkout.css b/src/Checkout/Checkout.css
index e69de29..a919daa 100644
--- a/src/Checkout/Checkout.css
+++ b/src/Checkout/Checkout.css
@@ -0,0 +1,17 @@
+.checkout {
+ display: flex;
+ padding: 20px;
+ background-color: white;
+ height: max-content;
+}
+
+.checkout__ad {
+ width: 100%;
+ margin-bottom: 10px;
+}
+
+.checkout__title {
+ margin-right: 10px;
+ padding: 10px;
+ border-bottom: 1px solid lightgray;
+}
\ No newline at end of file
diff --git a/src/Checkout/Checkout.js b/src/Checkout/Checkout.js
index a7ceda2..95d420e 100644
--- a/src/Checkout/Checkout.js
+++ b/src/Checkout/Checkout.js
@@ -2,7 +2,23 @@ import React from "react";
import "./Checkout.css";
function Checkout() {
- return ;
+ return (
+
+
+
+
+
+ Your Shopping Basket
+
+
+
+
+
+ );
}
export default Checkout;