monadic_react
Version:
A monadic library for easily composing React-based libraries.
20 lines (18 loc) • 479 B
HTML
<html>
<head>
<meta charset="UTF-8" />
<title>Hello React!</title>
<link rel="stylesheet" href="/css/site.css" />
</head>
<body>
<div id="react-content"></div>
<!-- Main -->
<script src="/js/site.js"></script>
<script>
slug = window.location.pathname
slug = slug.replace(/^\//, "")
app.HomePage_to(slug, "react-content")
</script>
</body>
</html>