import { Box, Text } from "ink"; import { PropsWithChildren } from "react"; export function Section( props: PropsWithChildren<{ title: string; hideHorizontalBorder?: boolean }> ) { return ( {props.title} {props.children} ); }