import TextArea from '@/components/ui/TextArea'; import TextInput from '@/components/ui/TextInput'; import AnimateFade from '@/components/wrap/AnimateFade'; 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)} />