entry-server.tsx 225 B

1234567
  1. import { renderToStringAsync } from "solid-js/web"
  2. import { App } from "./app"
  3. export async function render(props: { url: string }) {
  4. const app = await renderToStringAsync(() => <App url={props.url} />)
  5. return { app }
  6. }