This commit is contained in:
frontend perkafean
2024-09-08 11:54:34 +00:00
parent 112837b20e
commit 762bee40bb
6 changed files with 56 additions and 17 deletions

View File

@@ -0,0 +1,29 @@
import React from "react";
import { ColorRing } from "react-loader-spinner";
import styles from "./Transactions.module.css";
export default function Transaction_pending() {
const containerStyle = {
display: "flex",
justifyContent: "center",
alignItems: "center",
width: "100%",
height: "100%", // This makes the container stretch to the bottom of the viewport
backgroundColor: "#000", // Optional: Set a background color if you want to see the color ring clearly
};
return (
<div className={styles.Transactions}>
<div className={containerStyle}>
<div style={{ marginTop: "30px", textAlign: "center" }}>
<h2>pesananmu selesai diproses nih</h2>
<img
className={styles.expression}
src="https://i.imgur.com/nTokiWH.png"
alt="Success"
/>
</div>
</div>
</div>
);
}