()
| 1 | import React from "react"; |
| 2 | |
| 3 | const SendMessage = () => { |
| 4 | return ( |
| 5 | <form className="send-message"> |
| 6 | <label htmlFor="messageInput" hidden> |
| 7 | Enter Message |
| 8 | </label> |
| 9 | <input |
| 10 | id="messageInput" |
| 11 | name="messageInput" |
| 12 | type="text" |
| 13 | className="form-input__input" |
| 14 | placeholder="type message..." |
| 15 | /> |
| 16 | <button type="submit">Send</button> |
| 17 | </form> |
| 18 | ); |
| 19 | }; |
| 20 | |
| 21 | export default SendMessage; |
nothing calls this directly
no outgoing calls
no test coverage detected