I cam across the definition of a component in the code base I'm working upon:
@PureRender
export default class UiWidget extends Component {
}
I tried googling to understand the significance of the attribute @PureRender
which has been used to decorate the component but didn't get any relevant link. Can someone help me understand the impact of applying this attribute on a reactJs component?