Implementing a Controlled Input Component

Edited

I need to create a controlled input component in React where the input value is controlled by state. Whenever the user types in the input field, the state should update accordingly and reflect the changes in real-time.

Asked 1/31/2024 9:13:47 PM

1 Answers

unliked

0

You can create a controlled input component by using state to manage the value of the input field and an event handler to update the state when the input changes.

import React, { useState } from 'react';

function ControlledInput() {
    const [inputValue, setInputValue] = useState('');

    const handleChange = (event) => {
        setInputValue(event.target.value);
    };

    return (
        <input 
            type="text" 
            value={inputValue} 
            onChange={handleChange} 
            placeholder="Type something..." 
        />
    );
}

export default ControlledInput;

Edited

Answered 1/31/2024 9:14:41 PM

Add Your Answer


Add New