1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import { createRoot } from "https://esm.sh/react-dom@18.2.0/client";
3import { type Message } from "../shared/utils.ts";
4import { App } from "./components/App.tsx";
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>React Hono Val Town Starter</title>
7 <link rel="stylesheet" href="/public/style.css">
8 <link rel="icon" href="/public/favicon.svg" sizes="any" type="image/svg+xml">
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import React from "https://esm.sh/react@18.2.0";
3import { type Message, MESSAGE_LIMIT } from "../../shared/utils.ts";
4import { MessageInput } from "./MessageInput.tsx";
7 { initialMessages = [], thisProjectURL }: { initialMessages?: Message[]; thisProjectURL?: string },
8) {
9 const [messages, setMessages] = React.useState(initialMessages);
10
11 const fetchMessages = async () => {
1# React Hono Starter
2
3This app is a starter template for client-side React and server-side Hono.
4
5- **Remix** this starter template on the top right to get started.
7- The **entrypoint** is `/backend/index.ts`. That's the backend HTTP server, which also serves the all the frontend assets.
8
9- The **client-side entrypoint** is `/frontend/index.html`, which in turn imports `/frontend/index.tsx`, which in turn imports the React app from `/frontend/App.tsx`.
10
11[React Hono Example](https://www.val.town/x/stevekrouse/reactHonoExample) is a fuller featured example project, with a SQLite database table, queries, client-side CSS and a favicon, and some shared code that runs on both client and server.
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>React Hono Val Town Starter</title>
7 <!-- <link rel="stylesheet" href="/public/style.css"> -->
8 <!-- <link rel="icon" href="/public/favicon.svg" sizes="any" type="image/svg+xml"> -->
1/** @jsxImportSource https://esm.sh/react@18.3.1 */
2import { renderToString } from "https://esm.sh/react-dom@18.3.1/server";
3import React from "https://esm.sh/react@18.3.1";
4
5// Simple handler for the IdeaScore project
1/** @jsxImportSource https://esm.sh/react@18.3.1 */
2import { renderToString } from "https://esm.sh/react-dom@18.3.1/server";
3import React from "https://esm.sh/react@18.3.1";
4
5// Simple handler for the SampleProject project
1/** @jsxImportSource https://esm.sh/react@18.3.1 */
2import { renderToString } from "https://esm.sh/react-dom@18.3.1/server";
3import React from "https://esm.sh/react@18.3.1";
4import { listFiles } from "https://esm.town/v/std/utils/index.ts";
5import { lastlogin } from "https://esm.town/v/stevekrouse/lastlogin_safe";
1# React Hono Starter
2
3This app is a starter template for client-side React and server-side Hono.
4
5- **Remix** this starter template on the top right to get started.
7- The **entrypoint** is `/backend/index.ts`. That's the backend HTTP server, which also serves the all the frontend assets.
8
9- The **client-side entrypoint** is `/frontend/index.html`, which in turn imports `/frontend/index.tsx`, which in turn imports the React app from `/frontend/components/App.tsx`.
10
11[React Hono Example](https://www.val.town/x/stevekrouse/reactHonoExample) is a fuller featured example project, with a SQLite database table, queries, client-side CSS and a favicon, and some shared code that runs on both client and server.
1/** @jsxImportSource https://esm.sh/react */
2import React from 'https://esm.sh/react';
3import { ImageResponse } from 'npm:@vercel/og';
4