-1
beauty?
Well I am a layman in Reactjs, I am learning and at the same time using for work and so I have the following problem:
I have a checkbox that if it is checked a button of another component should be disabled... The question is, how do I do that? NOTE: This demand is a continuation of another company or I have more or less already done this..
File/Path: *ROOT/Climb-web/src/screens_dashboard/professional.js
<input type="checkbox" checked={ this.state.master } onChange={ this.toggleMaster } />
And I have the button on this path: *ROOT/landing_page/src/container/search.js
<Button color="info" className="text-uppercase" >Sessão gratuita</Button>
From what I saw doing some tests, I tried to import it on the way and it does not let pass of the Paste Src.
Thank you if you can help me.