Enter your HTML here
``` ```tsx <> {/* Hello world */}Enter your HTML here
> ``` -------------------------------- ### Basic Elysia HTML Setup Source: https://github.com/kitajs/html/blob/next/packages/docs/docs/integrations/frameworks/elysia.mdx Integrate the html plugin and define a route that returns JSX. The plugin automatically sets the correct Content-Type and prepends the doctype. ```typescript import { Elysia } from 'elysia' import { html } from '@elysiajs/html' const app = new Elysia() .use(html()) .get('/', () => (Welcome to the Kita Html package.