import FlexColumn from '@/components/ui/FlexColumn'; import Label from '@/components/ui/Label'; import TextArea from '@/components/ui/TextArea'; import TextInput from '@/components/ui/TextInput'; import AnimateFade from '@/components/wrap/AnimateFade'; import { IOperationSchema, OperationID } from '@/models/oss'; import PickMultiOperation from '../../components/select/PickMultiOperation'; 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)} />