ok
This commit is contained in:
23
src/pages/Loading.js
Normal file
23
src/pages/Loading.js
Normal 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;
|
||||
Reference in New Issue
Block a user