react
Installation
SKILL.md
React 19
Async Components (Server Components)
Server Components are async by default - use async/await directly:
// Server Component (default - no directive needed)
async function UserProfile({ id }) {
const user = await db.users.get(id);
return <div>{user.name}</div>;
}
Client Components
Add 'use client' for interactivity (hooks, event handlers, browser APIs):