diff options
author | William Carroll <wpcarro@gmail.com> | 2020-03-17T22·40+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-03-17T22·40+0000 |
commit | 209fdf5726a7e80ad4b99e2a6505b6522094a774 (patch) | |
tree | 3efd1a58b882ae0fbef08865d4629467147dd564 /nut-score/indexProduction.html | |
parent | 166aed6e80f902ce232c0f5e9b76eceef69a714b (diff) |
Add ReasonML boilerplate
After some toil, I finally support basic ReasonML starter code. I'm adding it to the nut-score directory because I would like to make a simple webpage that render some nutritional facts about nuts with respect to the ketogenic diet. I'm not sure if I should include or exclude te .bs.js files. See the README.md for more information.
Diffstat (limited to 'nut-score/indexProduction.html')
-rw-r--r-- | nut-score/indexProduction.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/nut-score/indexProduction.html b/nut-score/indexProduction.html new file mode 100644 index 000000000000..1597bfa6c6ff --- /dev/null +++ b/nut-score/indexProduction.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <title>ReasonReact Examples</title> +</head> +<body> + <script src="./bundleOutput/index.js"></script> +</body> +</html> |