summaryrefslogtreecommitdiff
path: root/tests/specs/run/jsx_import_source_error/jsx/jsx-dev-runtime/index.ts
blob: 15e2029c8ad4c2c04edc91d42ddad9705b1518e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// deno-lint-ignore-file no-explicit-any
export function jsx(
  _type: any,
  _props: any,
  _key: any,
  _source: any,
  _self: any,
) {}
export const jsxs = jsx;
export const jsxDEV = jsx;
export const Fragment = Symbol("Fragment");
console.log("imported", import.meta.url);