From dc391479b1a3f305a0d491354e889391dc0728ef Mon Sep 17 00:00:00 2001 From: John Jenkins Date: Thu, 12 Mar 2026 17:15:04 +0000 Subject: [PATCH] fix: export `Fragment` for devX --- src/core.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.ts b/src/core.ts index 3a5cbca..49dd811 100644 --- a/src/core.ts +++ b/src/core.ts @@ -2,7 +2,7 @@ import './testing/matchers.js'; import './testing/snapshot-serializer.js'; -export { h } from '@stencil/core'; +export { h, Fragment } from '@stencil/core'; export { render, waitForStable, waitForExist } from './testing/render.js'; export { serializeHtml, prettifyHtml, SerializeOptions } from './testing/html-serializer.js'; export type { RenderOptions, RenderResult } from './types.js';