import { TextArea, TextInput } from '@/components/Input'; interface TabOperationProps { alias: string; onChangeAlias: (newValue: string) => void; title: string; onChangeTitle: (newValue: string) => void; comment: string; onChangeComment: (newValue: string) => void; } function TabOperation({ alias, onChangeAlias, title, onChangeTitle, comment, onChangeComment }: TabOperationProps) { return (
onChangeTitle(event.target.value)} />
onChangeAlias(event.target.value)} />