 If I click on sender 'haq', how can I redirect to the messaging page and autofill 'haq' into the username text box?
If I click on sender 'haq', how can I redirect to the messaging page and autofill 'haq' into the username text box?
My code with the href is below:
return (
    <html className="u">
    <div className="form-container">
        <h1 className="message-text">Inbox</h1>
        <table className="table-box">
            <tr>
                <th>Sender </th>
                <th>Message</th>
            </tr>
            {messageList.map((val,key) => 
            {
                return (
            
            <tr>
                <a href = {"http://localhost:3000" + "/Message"}><td>{val.Sender}</td> </a>
                <td>{val.Message}</td>
            </tr>
                );
            })}
        </table>
    </div>
    </html>
);   
}
 
    