summaryrefslogtreecommitdiffhomepage
path: root/cloud/web/src/entry-server.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'cloud/web/src/entry-server.tsx')
-rw-r--r--cloud/web/src/entry-server.tsx7
1 files changed, 0 insertions, 7 deletions
diff --git a/cloud/web/src/entry-server.tsx b/cloud/web/src/entry-server.tsx
deleted file mode 100644
index 5dd33a149..000000000
--- a/cloud/web/src/entry-server.tsx
+++ /dev/null
@@ -1,7 +0,0 @@
-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 }
-}