File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 11import './setup-tests.js'
22import { Hono } from "hono" ;
3+ /* eslint-disable import/no-unresolved --
4+ * imports paths are there in node_modules/hono/package.json
5+ * but it doesn't get resolved
6+ */
37import * as HonoJSX from "hono/jsx" ;
48import * as HonoDOM from "hono/jsx/dom" ;
59import * as _jsx_runtime from "hono/jsx/jsx-runtime" ;
10+ /* eslint-enable import/no-unresolved */
611import { suite } from 'uvu'
712import * as assert from 'uvu/assert'
813import { bundleMDX } from '../index.js'
@@ -57,6 +62,7 @@ test('smoke test for hono', async () => {
5762 }
5863 } ) ;
5964
65+ /** @param {HonoJSX.DOMAttributes } props */
6066 const SpanBold = ( { children } ) => {
6167 return HonoJSX . createElement ( 'span' , { className : "strong" } , children )
6268 }
You can’t perform that action at this time.
0 commit comments