const _MyComponent = props => <div>Hello</div>
export const MyComponent = React.memo(_MyComponent)
That would allow you to keep MyComponent
as the name. You could alternately keep your original name and export MemoizedMyComponent
or something like that.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…