WIP! A BB-style forum, on the ATmosphere! We're still working... we'll be back soon when we have something to show off!
node typescript hono htmx atproto
at atb-58-admin-theme-list-page 11 lines 256 B view raw
1import type { FC } from "hono/jsx"; 2 3interface LoadingStateProps { 4 message?: string; 5} 6 7export const LoadingState: FC<LoadingStateProps> = ({ message = "Loading\u2026" }) => ( 8 <div class="loading-state htmx-indicator"> 9 <p>{message}</p> 10 </div> 11);