personal web client for Bluesky
typescript solidjs bluesky atcute
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

at nicer-image-embeds 11 lines 232 B view raw
1import CircularProgress from './circular-progress'; 2 3const CircularProgressView = () => { 4 return ( 5 <div class="grid h-13 shrink-0 place-items-center"> 6 <CircularProgress /> 7 </div> 8 ); 9}; 10 11export default CircularProgressView;