mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-11-15 17:21:38 +03:00
18 lines
399 B
TypeScript
18 lines
399 B
TypeScript
import { TextArea } from '@/components/input';
|
|
|
|
interface TabPromptResultProps {
|
|
prompt: string;
|
|
}
|
|
|
|
export function TabPromptResult({ prompt }: TabPromptResultProps) {
|
|
return (
|
|
<TextArea
|
|
aria-label='Сгенерированное сообщение'
|
|
value={prompt}
|
|
placeholder='Текст шаблона пуст'
|
|
disabled
|
|
className='w-full h-88'
|
|
/>
|
|
);
|
|
}
|