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