Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Added initial test page 'try_me.html' that loads the Webpack-generate…
…d JavaScript output logic.
- Loading branch information
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Step-by-Step Minimalistic React Web App Tutorial Test Page</title> | ||
</head> | ||
<body> | ||
<p>This is a test page for the step by step minimalistic React web app tutorial at | ||
<a href='http://maratbn.com/blogs/2017/01/14/minimalistic-react-webapp/'> | ||
http://maratbn.com/blogs/2017/01/14/minimalistic-react-webapp/ | ||
</a> | ||
</p> | ||
<script type='text/javascript' src='webpack_out/minimalistic_react.js'></script> | ||
</body> | ||
</html> |