loading component

This commit is contained in:
3zachm 2022-12-27 05:03:56 -08:00
commit be77e86e02
2 changed files with 81 additions and 0 deletions
components/common

View 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;