Skip to content
Advertisement

How user string input will show as background color in a div in react JS functional component

I am trying to make a color box where users can input color as a string but will display output as a background color in react I tried this way but it did not work as expected I am just learning to react. thanks in advance Here is my code.

JavaScript

); }

Advertisement

Answer

I’m not sure this is what you want to achieve, but here’s what I wrote https://codesandbox.io/s/laughing-thunder-jlc28?file=/src/App.js

  • randomColor is unused actually because you doesn’t want to display initially right?
  • I’m not sure why checking this inputcolor === color, it will always go to else (unless you know what the randomColor will be) so I skipped that part
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement