// @jsx: react-jsx,react-jsxdev // @strict: true // @module: commonjs // @filename: preact.tsx /// /* @jsxImportSource preact */ const props = { answer: 42 } const a =
text
; const b =
text
; export {}; // @filename: react.tsx /// /* @jsxImportSource react */ import "./preact"; const props2 = { answer: 42 } const a2 =
text
; const b2 =
text
; export {};