Guillot Florian
Results
1
comments of
Guillot Florian
``` class Captcha extends React.Component { constructor(props) { super(props) this.state = { shouldReset: false } this.component = React.createRef() } static getDerivedStateFromProps(nextProps, prevState) { return { shouldReset: nextProps.reset } } render()...