reactHonoStarter4 file matches
hallway-embed-base-custom-height-react4 file matches
reactHonoStarter4 file matches
Discord-to-Linear4 file matches
Discord -> Linear ticket based on emoji reaction trigger
You can access search results via JSON API by adding format=json to your query:
https://codesearch.val.run/%7Bresult.originalUrl%7D?q=react&page=7&format=jsonFor typeahead suggestions, use the /typeahead endpoint:
https://codesearch.val.run/typeahead?q=reactReturns an array of strings in format "username" or "username/projectName"
Found 21718 results for "react"(7223ms)
1/** @jsxImportSource https://esm.sh/react@18.2.0 */2import React, { useState, useEffect } from "https://esm.sh/react@18.2.0?deps=react@18.2.0";3import { createRoot } from "https://esm.sh/react-dom@18.2.0/client?deps=react@18.2.0,react-dom@18.2.0";4import { LoginWithGoogleButton } from "https://esm.town/v/stevekrouse/LoginWithGoogleButton";5111};112113const handleKeyPress = (e: React.KeyboardEvent) => {114if (e.key === 'Enter' && !e.shiftKey) {115e.preventDefault();
1# ChatGPT Clone with LastLogin Authentication23A fullstack React + Hono app that lets you chat with ChatGPT, with user authentication and thread history.45## Features18โโโ frontend/19โ โโโ index.html # Main HTML template20โ โโโ index.tsx # React frontend app21โโโ README.md22```28- โ SQLite schema for threads and messages29- โ Basic API endpoints for threads CRUD30- โ Static file serving for React frontend3132**Frontend Foundation:**33- โ React app with authentication UI34- โ Basic layout with sidebar for threads35- โ Login/logout flow with LoginWithGoogleButton47## API Endpoints4849- `GET /` - Main React app50- `GET /api/threads` - List user's threads51- `POST /api/threads` - Create new thread