Created
January 20, 2016 19:48
-
-
Save verekia/7e3c494c86834de482fb 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
define(function(){ | |
function render(parameters){ | |
var appDiv = document.getElementById('app'); | |
appDiv.innerHTML = '<input id="user-name" /><button id="add">Add this user</button>'; | |
} | |
return { | |
render:render | |
}; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment