mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
8 lines
215 B
JavaScript
8 lines
215 B
JavaScript
import React from "npm:react@18.2.0";
|
|
import { renderToString } from "npm:react-dom@18.2.0/server";
|
|
|
|
function App({ name }) {
|
|
return <div>Hello {name}!</div>;
|
|
}
|
|
|
|
console.log(renderToString(<App name="World" />));
|