import { Input, Typography } from '@douyinfe/semi-ui'; import React from 'react'; const TextInput = ({ label, name, value, onChange, placeholder, type = 'text' }) => { return ( <>
{label}
onChange(value)} value={value} autoComplete="new-password" /> ); } export default TextInput;