fix: render loading spinner if no hash
This commit is contained in:
22
components/Current/LoadingSpinner/index.tsx
Normal file
22
components/Current/LoadingSpinner/index.tsx
Normal file
@@ -0,0 +1,22 @@
|
||||
import styles from "./loading.module.css"
|
||||
|
||||
export default function LoadingSpinner() {
|
||||
return (
|
||||
<div className={styles.container}>
|
||||
<div className={styles.spinner}>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user