Skip to content
Advertisement

How do I get the color of a color-picker on button click?

Background:

I am trying to get the current value of a color picker when I click my onSubmit button. The color picker is in a separate component.

Problem:

When I change the color via the color picker, I am getting an error message that says: TypeError: _this.props.setSelectedColor is not a function

Component that has Color Picker Inside of It:

JavaScript

Color Picker Code:

JavaScript

Any ideas on how to fix?

Advertisement

Answer

If you want to pass a function down to a child you need to do it like this:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement