rynex
Version:
A minimalist TypeScript framework for building reactive web applications with no virtual DOM
30 lines (27 loc) • 643 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rynex Router Test</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: #ecf0f1;
}
.active {
background: rgba(255, 255, 255, 0.2) ;
font-weight: 600;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="index.js"></script>
</body>
</html>