DEV Community

Discussion on: Make your own Snackbars using React + Redux and Styled-Components

Collapse
 
adouz profile image
Abdellatif Douz

what about if you have multiple message that you want to show??

Collapse
 
gthinh profile image
Thinh Nguyen • Edited

Hi there! To handle multiple messages, you would need to update your redux store to manage an array of message objects. You would then map() the messages array instead.

Hope that helps!