mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
10 lines
276 B
TypeScript
10 lines
276 B
TypeScript
// this previously was ending up with two preacts and would crash
|
|
import { useMemo } from "preact/hooks";
|
|
import renderToString from "preact-render-to-string";
|
|
|
|
function Test() {
|
|
useMemo(() => "test", []);
|
|
return <div>Test</div>;
|
|
}
|
|
|
|
const html = renderToString(<Test />);
|