Basically i would like the user to click a button which will add a <Message /> component to the page. and they can keep clicking the button and more <Message /> components will be created.
Pseudo Code
render() {
return (
<button onClick={this.addMessage}></button>
<Message />
//basically a new message component would spawn here so it would look like this if the person clicked the button 3 times
<Message />
<Message />
<Message />
);
}
addMessage = () => {
create new Message component
}
<Message/>