mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-07-22 08:48:34 +00:00
414 B
414 B
Claude guidance for this project
React
- Avoid
useEffectanduseMemo. Derive values inline, use Server Components + Route Handlers, event handlers, oruseSyncExternalStoreinstead. If a hook is genuinely the only option, flag it and ask before using it.
Next.js 15 route handlers
paramsis aPromise— type as{ params: Promise<{ ... }> }andawait paramsbefore destructuring.