Better loading (and some other misc cleanup)

This commit is contained in:
Gnarwhal 2024-09-23 18:59:55 +00:00
parent aa12b94a01
commit d25edc1cb8
Signed by: Gnarwhal
GPG key ID: 0989A73D8C421174
5 changed files with 60 additions and 16 deletions

View file

@ -0,0 +1,9 @@
import * as style from './loading.css';
export default function Loading() {
return (
<div className={style.loading_squares}>
{style.loading.map((style, index) => <div key={index} className={style}></div>)}
</div>
);
}