Created
May 29, 2015 07:00
-
-
Save coreymcmahon/b2d5f116ad2fb6cadc1f to your computer and use it in GitHub Desktop.
Typical HTML component of a Single Page App (SPA) - http://slashnode.com
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
<!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