import { FlexColumn } from '@/components/Container'; import { Label, TextArea, TextInput } from '@/components/Input'; import PickMultiOperation from '../../components/PickMultiOperation'; import { IOperationSchema, OperationID } from '../../models/oss'; interface TabSynthesisOperationProps { oss: IOperationSchema; alias: string; onChangeAlias: (newValue: string) => void; title: string; onChangeTitle: (newValue: string) => void; comment: string; onChangeComment: (newValue: string) => void; inputs: OperationID[]; setInputs: React.Dispatch>; } function TabSynthesisOperation({ oss, alias, onChangeAlias, title, onChangeTitle, comment, onChangeComment, inputs, setInputs }: TabSynthesisOperationProps) { return (
onChangeTitle(event.target.value)} />
onChangeAlias(event.target.value)} />