pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
at main 9 lines 203 B view raw
1import { ReactNode } from "react"; 2 3export function Box(props: { children?: ReactNode }) { 4 return ( 5 <div className="bg-video-scraping-card rounded-xl p-8"> 6 {props.children} 7 </div> 8 ); 9}