summaryrefslogtreecommitdiff
path: root/src/pages/shop/checkout.js
diff options
context:
space:
mode:
authorRafi Zadanly <rafizadanly@gmail.com>2022-12-28 10:41:30 +0700
committerRafi Zadanly <rafizadanly@gmail.com>2022-12-28 10:41:30 +0700
commitabd2e9eae4e819e157a1a4e3820e1b8375f553f0 (patch)
tree1fc878145a9aed4735a36aa9879a45869708b160 /src/pages/shop/checkout.js
parenteec336f3ae76b7cd27aa5fad8b539ccb103a0455 (diff)
Progress Bar Component
Diffstat (limited to 'src/pages/shop/checkout.js')
-rw-r--r--src/pages/shop/checkout.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/pages/shop/checkout.js b/src/pages/shop/checkout.js
new file mode 100644
index 00000000..48cbc10e
--- /dev/null
+++ b/src/pages/shop/checkout.js
@@ -0,0 +1,17 @@
+import AppBar from "../../components/AppBar";
+import Layout from "../../components/Layout";
+import ProgressBar from "../../components/ProgressBar";
+
+
+export default function Checkout() {
+ return (
+ <Layout>
+ <AppBar title="Checkout" />
+
+ <ProgressBar
+ current={2}
+ labels={['Keranjang', 'Pembayaran', 'Selesai']}
+ />
+ </Layout>
+ )
+} \ No newline at end of file