Last active
December 20, 2015 22:19
-
-
Save tilsammans/a29b9ea1ae25be78d590 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
<%= react_component('PostcodeCheck') %> |
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
var PostcodeCheck = React.createClass({ | |
render: function() { | |
return ( | |
<section> | |
<form id="postcodecheck"> | |
<input id="postcode" name="postcode" placeholder="1234AA"> | |
<input id="housenumber" name="housenumber" placeholder="1"> | |
<input id="housenumber_addition" name="housenumber_addition" placeholder="a"> | |
<input type="submit" value="Check!" class="next-button"> | |
<p class="postcodecheck-result"></p> | |
</form> | |
</section> | |
); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment