Created
January 27, 2021 15:44
-
-
Save luistak/95a03349e7cbd0d052e326d9ef563b06 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function App({ messages = [] }) { | |
return ( | |
<div className="MF"> | |
<h3>Microfrontend 1️⃣</h3> | |
<p>New messages will be displayed below 👇</p> | |
<div className="MF__messages"> | |
{messages.map((something, i) => <p key={something + i}>{something}</p>)} | |
</div> | |
</div> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment