export const TaskInfo = ({ id, output }: { id: string; output: string }) => { return (
Prompt {id} Output {output}
); };