Experiment to rebuild Diffuse using web applets.
0
fork

Configure Feed

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

at s3 15 lines 200 B view raw
1--- 2import List from "../components/List.astro"; 3 4const { list, title } = Astro.props; 5--- 6 7<div class="applet"> 8 <h3>{title}</h3> 9 10 <p> 11 <em><slot /></em> 12 </p> 13 14 <List items={list} /> 15</div>