You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rappli/src/entry-server.tsx

13 lines
237 B
TypeScript

import {
StartServer,
createHandler,
renderAsync,
} from "solid-start/entry-server";
import { state } from "./server/store";
state();
export default createHandler(
renderAsync((context) => <StartServer context={context} />)
);