podcast-generator/client/src/components/loading.tsx
Jake Walker 7d60654d37
All checks were successful
ci/woodpecker/push/build Pipeline was successful
frontend rewrite
2025-02-05 22:47:39 +00:00

10 lines
246 B
TypeScript

export default function Loading() {
return (
<section class="section">
<div class="container">
<h1 class="title">One moment...</h1>
<progress class="progress is-primary" max="100" />
</div>
</section>
);
}