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