Last active
November 18, 2016 17:47
-
-
Save imkost/7b148f21598a2dfd515638795c66430a 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
function App({ url }) { | |
return ` | |
<!doctype html> | |
<html class="app"> | |
<head> | |
... | |
</head> | |
<body class="app__body"> | |
${NameEditor({ instanceIndex: 0 })} | |
${NameEditor({ instanceIndex: 1 })} | |
${NameEditor({ instanceIndex: 2 })} | |
<div class="app__scripts> | |
... | |
</div> | |
</body> | |
</html> | |
` | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment