input spellcheck off, input 빨간줄 없애기

example.tsx
1
2
3
4
5
6
7
8
<input
ref={inputRef}
type="text"
value={shareLink}
onClick={onLinkClickHandler}
spellCheck={false}
readOnly
/>
example.html
1
<input type="text" spellcheck="false" />
  • input안의 빨간 줄 생기는 것을 없앨 수 있다