This commit is contained in:
insvrgent
2025-02-03 17:48:48 +07:00
parent 8676621fe2
commit 66f73bc1ba
5 changed files with 84 additions and 22 deletions

23
src/pages/Loading.js Normal file
View File

@@ -0,0 +1,23 @@
// LinktreePage.js
import React, { useState, useEffect } from 'react';
import styles from './Join.module.css'; // Import the module.css file
import { ThreeDots } from "react-loader-spinner";
const LinktreePage = () => {
return (
<div className={styles.linktreePage}>
<div style={{
width: '150px',
height: '150px',
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
}}>
<ThreeDots color="#FFFFFF" height={40} width={40} />
</div>
</div>
);
};
export default LinktreePage;