blob: 48cbc10eba4f744ab8326d3964106764e015b504 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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>
)
}
|