mirror of
https://github.com/danbulant/oxc
synced 2026-05-25 04:42:10 +00:00
22 lines
788 B
HTML
22 lines
788 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Oxc - The JavaScript Oxidation Compiler</title>
|
|
<link rel="icon" type="image/x-icon" href="https://raw.githubusercontent.com/Boshen/oxc-assets/main/oxc.ico">
|
|
<style>
|
|
.cm-editor { height: 100%; }
|
|
.cm-panels.cm-panels-bottom { border-top: gray!important; }
|
|
.cm-panel { white-space: pre; height: 300px; overflow: auto; }
|
|
</style>
|
|
</head>
|
|
<body style="margin:0">
|
|
<script type="module" src="./index.js"></script>
|
|
|
|
<div style="display:flex;">
|
|
<div id="app" style="height:100vh;flex:3 0 0" ></div>
|
|
<div id="right" style="height:100vh;flex:2 0 0"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|