Skip to content

Instantly share code, notes, and snippets.

@imkost
Last active November 18, 2016 17:47
Show Gist options
  • Save imkost/7b148f21598a2dfd515638795c66430a to your computer and use it in GitHub Desktop.
Save imkost/7b148f21598a2dfd515638795c66430a to your computer and use it in GitHub Desktop.
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