mirror of
https://github.com/denoland/deno.git
synced 2025-01-02 04:19:10 -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());
|
||
|
}
|