chore: jsx to react to jsx

This commit is contained in:
Joel
2025-02-08 16:08:41 +08:00
parent d062519f60
commit 1e4f3bc459
41 changed files with 483 additions and 250 deletions

View File

@ -13,12 +13,12 @@ import { Edit03 } from '@/app/components/base/icons/src/vender/solid/general'
import Badge from '@/app/components/base/badge'
import ConfigVarModal from '@/app/components/app/configuration/config-var/config-modal'
interface Props {
type Props = {
readonly: boolean
payload: InputVar
onChange?: (item: InputVar, moreInfo?: MoreInfo) => void
onRemove?: () => void
rightContent?: JSX.Element
rightContent?: React.JSX.Element
varKeys?: string[]
showLegacyBadge?: boolean
}