mirror of
https://github.com/denoland/deno.git
synced 2024-12-11 10:07:54 -05:00
8 lines
156 B
TypeScript
8 lines
156 B
TypeScript
|
import renderJsx from "./foo.jsx";
|
||
|
import renderTsx from "./foo.tsx";
|
||
|
|
||
|
export function render() {
|
||
|
console.log(renderJsx());
|
||
|
console.log(renderTsx());
|
||
|
}
|