Do You Remember "Semantic HTML"? 🤣
F1LT3R

F1LT3R @f1lt3r

About: My social credit score is net zero 🎯 100% of my CO2 emissions are chlorophyll 🌿 I fart pure oxygen 🫧 & generate free electricity ⚡ from old dirt.

Location:
Boston, USA
Joined:
Nov 25, 2018

Do You Remember "Semantic HTML"? 🤣

Publish Date: Dec 29 '23
0 0
<div>
  <label {...getLabelProps()}>Enter a fruit</label>
  <div
    style={{display: 'inline-block'}}
    {...getRootProps({}, {suppressRefError: true})}
  >
    <input {...getInputProps()} />
  </div>
  <ul {...getMenuProps()}>
    {isOpen
      ? items
          .filter(item => !inputValue || item.value.includes(inputValue))
          .map((item, index) => (
            <li
              {...getItemProps({
                key: item.value,
                index,
                item,
                style: {
                  backgroundColor:
                    highlightedIndex === index ? 'lightgray' : 'white',
                  fontWeight: selectedItem === item ? 'bold' : 'normal',
                },
              })}
            >
              {item.value}
            </li>
          ))
      : null}
  </ul>
</div>
Enter fullscreen mode Exit fullscreen mode

Comments 0 total

    Add comment