import React from "react" import { Box, Text } from "ink" export function CommandOutput(props: { title: string; output: string }) { return ( ──────────────────────────────────────────────────────────────────────────── {props.title} {props.output.split("\n").map((line, index) => ( {line} ))} ) }