mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
13 lines
277 B
TypeScript
13 lines
277 B
TypeScript
|
// 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);
|