mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-27 21:01:03 +08:00
10 lines
130 B
TypeScript
10 lines
130 B
TypeScript
export default function Loading() {
|
|
return (
|
|
<>
|
|
<div className="card">
|
|
Loading...
|
|
</div>
|
|
</>
|
|
);
|
|
}
|