18 lines
656 B
TypeScript
18 lines
656 B
TypeScript
// Code generated by cmd/bundle; DO NOT EDIT.
|
|
// Source: frontend/src/pages/public/pages.ts
|
|
|
|
import { JSXElement } from "solid-js";
|
|
import { Ssr } from "./Ssr.tsx";
|
|
|
|
// Body component for each public route, keyed by URL pathname. The client
|
|
// router (public.ts) renders these when navigating without a full reload.
|
|
export const publicRoutes: Record<string, () => JSXElement> = {
|
|
"/js/ssr": Ssr,
|
|
};
|
|
|
|
// <title> for each public route, applied by the client router on navigation
|
|
// (the first load gets its title from the server-rendered shell).
|
|
export const publicTitles: Record<string, string> = {
|
|
"/js/ssr": "Server-rendered — Kjøl JS Web",
|
|
};
|