Front/React
[React] 리액트 input 박스 안에 데이터 넣는 방법
AlexHouse
2022. 11. 14. 11:39
I use it only JSTL
I couldn't know how can I push it in input box?
So Now I figure out how to insert data in input box lol kk
let 's go guys
Process
The answer is use this
DefaultValue={element}
when we use it this
we can push it default data in input box.
This method was recommended when you use React
if you use different method you will see this errror
<textarea>{element}</textare>
this is not good way recommended.
Why?
Warning: Use the defaultValue or value props instead of setting children on
you'll see this error So Be careful when you use it this

To be continue..