Created
June 19, 2018 11:30
-
-
Save elnygren/0d30fc44edaef6548600beb4c923521a to your computer and use it in GitHub Desktop.
Frontend of the Future
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
<html> | |
<head>...</head> | |
<body> | |
<div>foo some template here></div> | |
{% for meme in memes %}...render meme...{% endfor %} | |
<div id="react-sidebar-app"/> | |
<footer id="react-footer-app"/> | |
</body> | |
<script> | |
React.render(<Foo/>, document.getElementById('react-sidebar-app')); | |
React.render(<Bar/>, document.getElementById('react-footer-app')); | |
</script> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment