style-copy-extension/src/sidebar.html
2025-02-03 02:17:10 +09:00

19 lines
No EOL
427 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sidebar</title>
<style>
code {
font-family: monospace;
background: #f0f0f0;
display: block;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="./sidebar.tsx"></script>
</body>
</html>