Open tristanlang opened 5 months ago
I think your use of <input ...> can be simplified to something like the following, since it has no children:
<input ...>
<input required type="text" id='name' placeholder='Board Name' className='modal-input-option' /><br />
https://github.com/GermanS04/Kudos-board/blob/6756ba6b014a142d3dc087a16036e628e7e62102/Frontend/kudos-board/src/components/CreateBoardModal.jsx#L45-L65
Ohhh yeah you're right, thank you for pointing it out, I'll be more careful to close the tags without children
I think your use of
<input ...>
can be simplified to something like the following, since it has no children:https://github.com/GermanS04/Kudos-board/blob/6756ba6b014a142d3dc087a16036e628e7e62102/Frontend/kudos-board/src/components/CreateBoardModal.jsx#L45-L65