GermanS04 / Kudos-board

0 stars 0 forks source link

<input> simplification #4

Open tristanlang opened 3 months ago

tristanlang commented 3 months ago

I think your use of <input ...> can be simplified to something like the following, since it has no children:

<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

GermanS04 commented 3 months ago

Ohhh yeah you're right, thank you for pointing it out, I'll be more careful to close the tags without children