Public
Back
Version 49
7/16/2024
/** @jsxImportSource npm:hono/jsx **/
import { Hono } from "npm:hono";
import type { FC } from "npm:hono/jsx";
const Layout: FC = (props) => {
return (
<html>
<head>
<link rel="stylesheet" href="https://unpkg.com/lu2/theme/edge/css/common/ui.css"></link>
<script type="module" src="https://unpkg.com/lu2/theme/edge/js/common/all.js"></script>
</head>
<body>{props.children}</body>
<script src="https://cdn.jsdelivr.net/npm/@unocss/runtime"></script>
</html>
);
};
const Main: FC<{ data: Record<string, any> }> = (props) => {
return (
<Layout>
<main class="container">
<h1 class="mb-4 text-4xl font-extrabold leading-none tracking-tight text-gray-900 md:text-5xl lg:text-6xl dark:text-white">
{props.data.title}
</h1>
<div class="table-x table-checkbox">
<div class="table-header">
<h2 class="table-title">Table</h2>
</div>
<table class="ui-table" width="100%">
<tr>
<th>
<input type="checkbox" is="ui-checkbox" />
</th>
<th>粉丝</th>
<th width="30%">评论内容</th>
lnncoco-daisyui_hono.web.val.run
Updated: August 23, 2024