© 2026 Hedgehog Software, LLC
error: Cannot find module 'react/jsx-dev-runtime'
import {Hono} from 'hono' import { css, Style } from 'hono/css'; const app = new Hono() app.get('/', (c) => { const headerClass = css` background-color: orange; color: white; padding: 1rem; `; return c.html( ` <html> <head> ${<Style/>} {/* Important: This component injects the generated CSS */} </head> <body> <h1 class={headerClass}>Hello Hono with CSS Helper!</h1> </body> </html> ` ) }); export default { port: 8787, fetch: app.fetch, }