Skip to content

suggestion: use React memo on Input, Suggestion and Tags to avoid re render #264

Open
@rrfaria

Description

@rrfaria

I noticed every single time there is a blur event even if nothing is changed
All componentes are rendered again

to avoid it you can use React.memo.
It will memoize properties and only will render again if any property changes

you can add it to:
Input, Suggestions and Tag component

import React from 'react'

class Input extends React.Component {
 // implementation ....
 
}
export default React.memo(Input)

you can check re render by using react dev tools
image
and enable highligh updates
image

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions