import {Row, Col, Card, Tabs, TabsProps, TextArea} from '@gravity-ui/uikit'; export type OutputAreaProps = { handleSelectTab: (active: string) => void; tabItems: TabsProps['items']; tabActive: string; handleInputChange?: (input: string) => void; output: string; }; function OutputArea(props: OutputAreaProps) { let {output, tabItems, tabActive, handleSelectTab, handleInputChange} = props; if (!handleInputChange) { handleInputChange = () => {} } return ( {tabActive === 'preview' ?
: