(props: Props)
| 6 | } |
| 7 | |
| 8 | const Input: FC = (props: Props) => { |
| 9 | const { data, id } = props |
| 10 | |
| 11 | return ( |
| 12 | <input id={id} className='e-input' placeholder='请输入你的数据' {...data} /> |
| 13 | ) |
| 14 | } |
| 15 | |
| 16 | export default Input |
nothing calls this directly
no outgoing calls
no test coverage detected