loading component
This commit is contained in:
parent
01714ed492
commit
be77e86e02
2 changed files with 81 additions and 0 deletions
components/common
15
components/common/Loading.tsx
Normal file
15
components/common/Loading.tsx
Normal file
|
@ -0,0 +1,15 @@
|
|||
import styles from "./Loading.module.css";
|
||||
|
||||
// https://loading.io/css/
|
||||
function Loading() {
|
||||
return (
|
||||
<div className={styles.ldsEllipsis}>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default Loading;
|
Loading…
Add table
Add a link
Reference in a new issue