Last active
November 23, 2016 10:30
-
-
Save thiagoa/8da6a601d5cb9435dc4ae5162fcb74b5 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
export default function mountComponent(opts) { | |
const containerNode = opts.containerNode; | |
containerNode.innerHTML = ` | |
<div class="tweet"><p>Hi @dude!</p></div> | |
<div class="tweet"><p>Pizza!</p></div> | |
`; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment