Public
LikeRecipes
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.
React-based UI for the Meals recipe management application.
frontend/
├── index.html # Main HTML template (served at /)
├── index.tsx # React entry point
├── style.css # Global styles (if needed)
├── components/
│ ├── App.tsx # Main app component
│ └── *.tsx # Feature components
└── favicon.svg # App icon
- React 18.2.0 - UI framework
- Twind - TailwindCSS-in-JS (loaded via CDN)
- TypeScript - Type safety
- All React files must include
@jsxImportSource https://esm.sh/react@18.2.0at the top - Use
https://esm.shfor npm imports with React version pinning - Shared types are imported from
/shared/types.ts - Client-side errors are captured by the std/catch script