stack/examples/e-commerce/src/app/loading.tsx
Zai Shi 54027d58a2
New client (#135)
Co-authored-by: Konsti Wohlwend <n2d4xc@gmail.com>
2024-07-19 22:07:44 -07:00

10 lines
130 B
TypeScript

export default function Loading() {
return (
<>
<div className="card">
Loading...
</div>
</>
);
}