mirror of
https://github.com/kennethnym/jrx.git
synced 2026-03-21 04:11:18 +00:00
17 lines
483 B
HTML
17 lines
483 B
HTML
|
|
<!doctype html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8" />
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
|
<title>jrx example</title>
|
||
|
|
<style>
|
||
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
||
|
|
body { font-family: system-ui, -apple-system, sans-serif; background: #f5f5f5; color: #111; }
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div id="root"></div>
|
||
|
|
<script type="module" src="./frontend.tsx"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|