1/** @jsxImportSource https://esm.sh/react@18.2.0 */
23export function PdfContent({ data, content }) {
Glimpseiframe.tsx1 match
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
23export function IframeContent({ data, content }) {
Glimpseiframe.tsx2 matches
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import { Hono } from "npm:hono";
3import { renderToString } from "https://esm.sh/react-dom@18.2.0/server?deps=react@18.2.0";
45const app = new Hono();
GlimpsegettingStarted.tsx1 match
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
23export function GettingStartedContent({ data, title }) {
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import { useState } from "https://esm.sh/react@18.2.0";
34export function FormContent({ data, content }) {
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
23export function ChessEmbedIframe({ config }) {
Glimpsecheckout.tsx2 matches
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import { useState } from "https://esm.sh/react@18.2.0";
34export function CheckoutContent({ data, content }) {
Glancer_Testtest.tsx1 match
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
23export function Test() {
Glancer_TestREADME.md9 matches
100## Codebase Structure
101102This project extends Val Town's recommended approach for using Hono and React together (https://www.val.town/x/std/reactHonoStarter) with additional enterprise features.
103104```
111โ โ โโโ views/ # HTML page serving
112โ โโโ index.ts # Main Hono application entry point
113โโโ frontend/ # Client-side React application
114โ โโโ components/ # React components
115โ โโโ index.html # Main HTML template
116โ โโโ index.tsx # Frontend JavaScript entry point
125### Frontend (`/frontend`)
126127React-based user interface with Tailwind CSS styling. Includes the main demo interface, cobrowsing integration, and interactive components.
128129### Shared (`/shared`)
138- **Blob Storage**: Val Town's built-in caching solution for performance optimization
139- **Cron Jobs**: Scheduled tasks to maintain cache freshness
140- **React/JSX**: Frontend interface templates with TypeScript
141- **Tailwind CSS**: Utility-first CSS framework for styling
142143## Technical Implementation
144145### React Frontend
146147The frontend uses React 18.2.0 with JSX import source configuration:
148149```typescript
150/** @jsxImportSource https://esm.sh/react@18.2.0 */
151```
152153All React dependencies are pinned to ensure compatibility across the platform.
154155### Hono Backend Routes
Glancer_Testpdf.tsx1 match
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
23export function PdfContent({ data, content }) {