芝麻web文件管理V1.00
编辑当前文件:/home/felaukpo/public_html/wp-content/plugins/cartflows/wizard/assets/src/fields/TextField.js
import React from 'react'; function InputField( props ) { const { attr } = props; const [ inputvalue, setInputvalue ] = React.useState( props.value ); function handleChange( e ) { setInputvalue( e.target.value ); } const type = props.type ? props.type : 'text'; return ( <>
{ props.label }
> ); } export default InputField;