import { ReactNode } from "react"; export function Box(props: { children?: ReactNode }) { return (
{props.children}
); }