mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-07-03 17:10:10 +08:00
11 lines
278 B
TypeScript
11 lines
278 B
TypeScript
export const TaskInfo = ({ id, output }: { id: string; output: string }) => {
|
|
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>
|
|
);
|
|
};
|