mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-07-11 00:30:06 +08:00
11 lines
275 B
TypeScript
11 lines
275 B
TypeScript
export const TaskInfo = ({ id, output }: { id: string; output: any }) => {
|
|
return (
|
|
<div className="grid grid-cols-[min-content_auto] gap-x-2 text-gray-700">
|
|
<b>Prompt</b>
|
|
<span>{id}</span>
|
|
<b>Output</b>
|
|
<span>{output}</span>
|
|
</div>
|
|
);
|
|
};
|