mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 20:38:52 +00:00
20 lines
548 B
HTML
20 lines
548 B
HTML
<!doctype html>
|
|
<html class="sl-theme-dark" lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/@shoelace-style/shoelace@2.0.0/dist/themes/dark.css"
|
|
/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Simple Inline Editor Example</title>
|
|
</head>
|
|
<body>
|
|
<test-page></test-page>
|
|
<script type="module">
|
|
import './test-page';
|
|
</script>
|
|
</body>
|
|
</html>
|