Skip to content

Instantly share code, notes, and snippets.

@coreymcmahon
Created May 29, 2015 07:00
Show Gist options
  • Save coreymcmahon/b2d5f116ad2fb6cadc1f to your computer and use it in GitHub Desktop.
Save coreymcmahon/b2d5f116ad2fb6cadc1f to your computer and use it in GitHub Desktop.
Typical HTML component of a Single Page App (SPA) - http://slashnode.com
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>My Web App</title>
</head>
<body>
<div id="react-app"></div>
<script src="/js/bundle.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment