twifeur/pages/components/post.tsx
2024-05-24 02:04:48 +02:00

12 lines
292 B
TypeScript

/** @jsx jsx */
import { PropsWithChildren, jsx } from "https://deno.land/x/hono@v4.3.10/middleware.ts"
import { _css } from "../../lib/utils.ts";
export function Post({ children, name }: PropsWithChildren<{ name: string }>) {
return (
<div>
</div>
)
}