Better loading (and some other misc cleanup)
This commit is contained in:
parent
aa12b94a01
commit
d25edc1cb8
5 changed files with 60 additions and 16 deletions
9
src/app/[...file]/components/loading.tsx
Normal file
9
src/app/[...file]/components/loading.tsx
Normal 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>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue