Skip to content

Instantly share code, notes, and snippets.

@elnygren
Created June 19, 2018 11:30
Show Gist options
  • Save elnygren/0d30fc44edaef6548600beb4c923521a to your computer and use it in GitHub Desktop.
Save elnygren/0d30fc44edaef6548600beb4c923521a to your computer and use it in GitHub Desktop.
Frontend of the Future
<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