(attempted) pleroma clone for bluesky pl.hexmani.ac
bluesky pleroma social-media
2

Configure Feed

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

bluroma / src / components / container.tsx
344 B 19 lines
1import { JSX } from "solid-js"; 2 3type ContainerProps = { 4 title: string; 5 children?: JSX.Element; 6}; 7 8const Container = (props: ContainerProps) => { 9 return ( 10 <div class="container"> 11 <div class="container-header"> 12 <span>{props.title}</span> 13 </div> 14 {props.children} 15 </div> 16 ); 17}; 18 19export default Container;