xproglabs / prensa-designsystem

Projeto que controla os componentes React do design-system Prensa.
http://docs.prensadesign.com.br
4 stars 3 forks source link

Remove "rest" connection with CustomLink in Link component #598

Closed gbombassaro closed 1 year ago

gbombassaro commented 1 year ago

BREAKING CHANGE: All cases that make usage of props directly in Link component expecting to receive in CustomLink must be migrated to use "componentProps" property.


<Link component={NextLink} legacyBehavior={true}/>    ------>    <Link component={NextLink} customProps={{ legacyBehavior: true }} />```